-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
38 lines (38 loc) · 1.05 KB
/
.eslintrc
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
{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": false
},
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "ignore",
"exports": "ignore",
"functions": "ignore"
}
],
"indent": ["error", 4, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"no-console": "warn",
"no-unexpected-multiline": "error",
"no-unused-vars": [2, {"args": "all", "argsIgnorePattern": "^_"}],
"quotes": ["error", "double"],
"semi": ["error", "never"],
"space-before-function-paren": ["error", "always"],
"strict": 0
}
}