-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
58 lines (58 loc) · 1.32 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
{
"env": {
"node": true,
"browser": true,
"worker": true,
"jquery": true
},
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"new-cap": [
2,
{
"capIsNewExceptions": [
"FluxMixin",
"StoreWatchMixin"
]
}
],
"react/prefer-es6-class": 0,
"import/extensions": 1,
"no-useless-escape": 1,
"no-bitwise": 1,
"no-plusplus": 1,
"react/forbid-prop-types": 1,
"react/require-default-props": 1,
"react/no-unused-prop-types": 1,
"jsx-a11y/no-static-element-interactions": 1,
"react/no-array-index-key": 1,
"no-unused-vars": 1,
"react/no-deprecated": 0,
"react/no-find-dom-node": 0,
"global-require": 0,
"import/no-webpack-loader-syntax": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/anchor-has-content": 0
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"globals": {
"_": true,
"tinymce": true,
"jsonh": true,
"compileSectionData": true,
"dataprebuiltId": true,
"autoresponderStatus": true,
"MagicWand": true,
"tinyMCE": true,
"FB": true
}
}