-
Notifications
You must be signed in to change notification settings - Fork 29
/
.eslintrc.json
46 lines (46 loc) · 1.36 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
{
"env": {
"es6": true,
"browser": true
},
"extends": ["plugin:react/recommended", "airbnb", "prettier"],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "jsx-a11y"],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/react-in-jsx-scope": "off",
"no-console": 0,
"camelcase": 0,
"function-paren-newline": 0,
"react/prefer-stateless-function": 0,
"react/forbid-prop-types": 0,
"class-methods-use-this": 0,
"react/no-unused-prop-types": 0,
"react/no-array-index-key": 0,
"react/no-danger": 0,
"no-nested-ternary": 0,
"no-restricted-globals": 0,
"jsx-a11y/media-has-caption": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/anchor-has-content": 0,
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/click-events-have-key-events": 0,
"import/no-extraneous-dependencies": 0,
"jsx-a11y/no-static-element-interactions": 0,
"no-unused-vars": 0,
"react/button-has-type": 0,
"no-plusplus": 0,
"import/prefer-default-export": 0,
"react/prop-types": 0,
"no-continue": 0,
"radix": 0,
"eqeqeq": 0,
"array-callback-return": 0,
"consistent-return": 0,
"react/jsx-props-no-spreading": 0
}
}