forked from ClubInfoInsaT/site-club-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 941 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "club-info-2",
"version": "1.0.0",
"private": true,
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"prettier": "2.5.0"
},
"eslintConfig": {
"root": true,
"plugins": [],
"extends": [
"prettier"
],
"rules": {
"no-undef": 0,
"no-shadow": "off",
"prettier/prettier": [
"error",
{
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always"
}
]
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always"
}
}