We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f38b8be commit fdd2287Copy full SHA for fdd2287
2 files changed
package.json
@@ -0,0 +1,33 @@
1
+{
2
+ "name": "prettier-config-atomic",
3
+ "main": "./prettier.config.js",
4
+ "version": "0.1.0",
5
+ "files": [
6
+ "./prettier.config.js"
7
+ ],
8
+ "author": "Amin Yahyaabadi",
9
+ "description": "The Prettier configuration used in atom-ide-community",
10
+ "keywords": [
11
+ "prettier",
12
+ "prettier-config",
13
+ "prettier-preset",
14
+ "format",
15
+ "beautify"
16
17
+ "repository": "https://github.com/atom-ide-community/prettier",
18
+ "license": "MIT",
19
+ "scripts": {
20
+ "format": "prettier --write .",
21
+ "test.format": "prettier . --check",
22
+ "lint": "eslint . --fix",
23
+ "test.lint": "eslint .",
24
+ "bump": "ncu -u"
25
+ },
26
+ "dependencies": {
27
+ "prettier": "^2.2.1"
28
29
+ "devDependencies": {
30
+ "eslint": "^7.22.0",
31
+ "eslint-config-atomic": "^1.12.4"
32
+ }
33
+}
0 commit comments