-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
107 lines (106 loc) · 2.65 KB
/
.eslintrc.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"extends": ["airbnb"],
"parser": "babel-eslint",
"ecmaFeatures": {
"jsx": true
},
"plugins": [
"react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
// Possible Errors
"no-console": 0,
"no-debugger": 1,
"no-extra-semi": 0,
"react/no-deprecated": 0,
"no-inner-declarations": 2,
"no-regex-spaces": 1,
"valid-typeof": 2,
// Best Practices
"default-case": 1,
"no-eq-null": 2,
"no-implied-eval": 2,
"no-invalid-this": 1,
"no-multi-spaces": [1, {
"exceptions": {
"VariableDeclarator": true,
"ImportDeclaration": true
}
}],
"no-with": 2,
// other
"comma-spacing": [1, {
"before": false,
"after": true
}],
"space-infix-ops": [2, {"int32Hint": true}],
"indent": [2, 2, {"SwitchCase": 1}],
"linebreak-style": [2, "unix"],
"jsx-a11y/no-access-key": 0,
"id-length": 0,
"func-names": 0,
"no-dupe-keys": 0,
"react/no-did-mount-set-state": 0,
"no-unused-expressions": 0,
"no-else-return": 0,
"react/forbid-prop-types": 0,
"no-fallthrough": 0,
"guard-for-in": 0,
"camelcase": 0,
"react/jsx-uses-vars": [
2
],
"react/jsx-uses-react": [
2
],
"comma-dangle": [
2,
"always-multiline"
],
"no-use-before-define": [1,
{
"functions": false
}
],
"no-unused-vars": [ 2, {"vars": "local", "args": "after-used"} ],
"global-require": 0,
"max-len": 0,
"import/newline-after-import": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"react/require-extension": 0,
"import/extensions": 0,
"import/imports-first": 0,
"no-underscore-dangle": 0,
"import/no-mutable-exports": 0,
"jsx-quotes": [
"error",
"prefer-single"
],
"no-global-assign": 0,
"jsx-a11y/no-static-element-interactions": 0
},
"env": {
"es6": true,
"browser": true,
"node": true,
"amd": true,
"commonjs": true,
"jquery": true
},
"globals": {
"$": true,
"_": true,
"jQuery": false,
"Zepto": false,
"Angular": false,
"Backbone": false,
"React": false,
"Highcharts": false
}
}