-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
27 lines (27 loc) · 828 Bytes
/
.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
{
"extends": ["airbnb/base"],
"parser" : "babel-eslint",
"env": {
"browser": true,
"node": true,
"commonjs": true,
"jest": true,
"es6": true
},
"rules": {
"comma-dangle": ["error", "always-multiline"],
"semi": ["error", "never"],
"arrow-parens": ["error", "as-needed"],
"object-curly-spacing": ["error", "always"],
"array-bracket-spacing": ["error", "never"],
"quotes": ["error", "single"],
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
"eol-last": ["error", "always"],
"indent": [2, 4],
"template-curly-spacing": ["error", "always"],
"no-multi-spaces": "off",
"no-plusplus": "off",
"linebreak-style": "off",
"no-console": "off"
}
}