-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
64 lines (64 loc) · 2.05 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": "true",
"jest": "true"
},
"rules": {
"arrow-body-style": "off",
"arrow-parens": "off",
"comma-dangle": "off",
"consistent-return": "off",
"default-case": "off",
"function-paren-newline": "off",
"import/extensions": "off",
"import/no-cycle": "off",
"import/no-extraneous-dependencies": "off",
"import/no-named-as-default-member": "off",
"import/no-named-as-default": "off",
"import/no-unresolved": "off",
"import/order": "off",
"import/prefer-default-export": "off",
"jsx-a11y/anchor-has-content": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/label-has-for": "off",
"jsx-a11y/no-static-element-interactions": "off",
"linebreak-style": "off",
"new-cap": "off",
"no-confusing-arrow": "off",
"no-else-return": "off",
"no-loop-func": "off",
"no-mixed-operators": "off",
"no-multi-assign": "off",
"no-nested-ternary": "off",
"no-new": "off",
"no-param-reassign": "off",
"no-prototype-builtins": "off",
"no-restricted-globals": "off",
"no-restricted-properties": "off",
"no-return-assign": "off",
"no-console": "off",
"no-shadow": "off",
"no-underscore-dangle": "off",
"no-use-before-define": ["error", { "functions": false }],
"object-curly-newline": "off",
"operator-linebreak": "off",
"radix": "off",
"react/destructuring-assignment": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"react/no-array-index-key": "off",
"react/no-danger": "off",
"react/no-unescaped-entities": "off",
"react/state-in-constructor": "off",
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"semi": ["error", "never"]
}
}