-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
48 lines (46 loc) · 1.19 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
{
"extends": ["airbnb", "plugin:react/recommended"],
"plugins": [
"react",
"jsx-a11y",
"import"
],
"env": {
"browser": true,
"node": true,
"es6": true,
"jquery": true
},
"globals": {
"grecaptcha": true
},
"rules": {
"quotes": ["error", "double"],
"arrow-body-style": 0,
"func-names": 0,
"space-in-parens": ["error", "always"],
"space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "ignore"
}],
"quote-props": ["error", "consistent"],
"no-console": 0,
"eol-last": 0,
"no-unused-vars": 1,
"constructor-super": 0,
"comma-dangle": 1,
"class-methods-use-this": 0,
"max-len": 0,
"no-alert": 0,
"no-plusplus": 0,
"no-restricted-syntax": [0, "ForInStatement"],
"no-prototype-builtins": 0,
"linebreak-style": 0,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/jsx-no-bind": 0,
"react/no-danger": 0,
"react/prefer-stateless-function": 0
}
}