-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
39 lines (39 loc) · 864 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
{
"extends": "airbnb",
"env": {
"browser": true,
"mocha": true,
"jquery": true
},
"globals": {
"CONSTANTS": true
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
},
"plugins": [
"react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/no-dynamic-require": 0,
"import/no-named-as-default": 0,
"import/no-unresolved": 0,
"react/forbid-prop-types": 0,
"react/button-has-tpe": 0,
"react/no-array-index-key": 0,
"no-underscore-dangle": 0,
"global-require": 0,
"camelcase": ["error", { "properties": "never" } ]
}
}