forked from scsibug/class-central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 893 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",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
},
"env": {
"browser": true,
"mocha": true
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
},
"import/extensions": ['.js', '.jsx', '.es6']
},
"rules": {
"jsx-a11y/no-static-element-interactions": 0,
"react/no-unused-prop-types": ["warn", { "skipShapeProps": true }],
"react/forbid-prop-types": 0,
"import/extensions": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/no-duplicates": 0,
"import/no-absolute-path": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"class-methods-use-this": 0,
"quotes": ["error", "double"],
}
}