-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
41 lines (41 loc) · 792 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"extends": "airbnb/base",
"globals": {
PreStyle: true
},
"env": {
"es6": true,
"browser": true,
"commonjs": true,
"node": true,
"mocha": true
},
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
"rules": {
"eqeqeq": 1,
"global-require": 1,
"camelcase": 1,
"max-len": 0,
"new-cap": 0,
"no-bitwise": 0,
"no-var": 0,
"no-plusplus": 0,
"no-unused-vars": 1,
"comma-dangle": 0,
"spaced-comment": 0,
"padded-blocks": 1,
"space-in-parens": 0,
"space-before-function-paren": 0,
"no-underscore-dangle": 0,
"import/no-extraneous-dependencies": 0,
"import/no-dynamic-require": 0,
"quotes": [2, "single", {
avoidEscape: true,
allowTemplateLiterals: true
}]
}
}