-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
36 lines (36 loc) · 874 Bytes
/
.eslintrc.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
{
"parser": "babel-eslint",
"extends": ["airbnb/base", "prettier"],
"env": {
"browser": true,
"node": true,
"jest": true
},
"rules": {
"semi": [2, "never"],
"no-console": [ 2, { "allow": ["warn", "info", "error"] } ],
"import/named": 2,
"no-multiple-empty-lines": [ "error", { "max": 1, "maxEOF": 1, "maxBOF": 0 } ],
"import/order": [
"error",
{
"groups": ["builtin", "external", "parent", "sibling", "index"],
"newlines-between": "always"
}
],
"arrow-parens": ["error", "as-needed"],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": false,
"parser": "babylon",
"printWidth": 100
}
]
},
"plugins": ["prettier"]
}