-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
78 lines (78 loc) · 1.48 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "airbnb-base",
// required to lint *.js files
"plugins": [
"react",
"html"
],
// check if imports actually resolve
"settings": {
"import/resolver": {
"webpack": {
"config": "build/webpack.base.config.js"
}
}
},
// add your custom rules here
"rules": {
"no-undefined": "warn",
"no-unused-vars": [
"warn",
{
"vars": "local",
"args": "after-used",
"ignoreRestSiblings": true
}
],
"import/prefer-default-export": "off",
"comma-dangle": [
1,
"never"
],
"no-undef": "off",
"no-restricted-syntax": [
"error",
"WithStatement"
],
"no-unused-expressions": [
"warn"
],
"class-methods-use-this": [
"off"
],
"global-require": "warn",
"no-script-url": "warn",
"no-nested-ternary": "off",
"arrow-body-style": [
"warn"
],
"max-len": "warn",
"import/no-webpack-loader-syntax": "warn",
"no-underscore-dangle": "off",
"prefer-arrow-callback": [
"error",
{
"allowUnboundThis": true
}
],
"no-mixed-operators": [
"warn"
],
// allow debugger during development
"no-debugger": 0
}
}