-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
53 lines (52 loc) · 1.47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"extends": "airbnb-base",
"env": {
"browser": true
},
"plugins": ["import"],
"parser": "babel-eslint",
"rules": {
"arrow-parens": ["error", "as-needed", { "requireForBlockBody": false }],
"consistent-return": ["off"],
"prefer-rest-params": ["off"],
"no-else-return": ["off"],
"no-param-reassign": ["off"],
"no-restricted-syntax": ["off"],
"no-useless-escape": ["warn"],
"no-underscore-dangle": [
"off",
{ "allowAfterThis": true, "allowAfterSuper": true }
],
"no-restricted-globals": ["off"],
"guard-for-in": ["off"],
"no-console": ["off"],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"import/prefer-default-export": ["off"],
"class-methods-use-this": ["off"],
"camelcase": ["warn"],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"benchmark/**",
"test/**",
"tests/**",
"spec/**",
"**/__tests__/**",
"test.js",
"test-*.js",
"**/*.test.js",
"**/*.spec.js",
"**/webpack.config.js",
"**/webpack.config.*.js",
"**/rollup.config.js",
"**/rollup.config.*.js",
"**/gulpfile.js",
"**/gulpfile.*.js",
"**/Gruntfile"
],
"optionalDependencies": false
}
]
}
}