-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.eslintrc.json
More file actions
38 lines (37 loc) · 1.22 KB
/
.eslintrc.json
File metadata and controls
38 lines (37 loc) · 1.22 KB
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
{
"env": {
"browser": true
},
"extends": ["airbnb", "airbnb/hooks", "prettier"],
"plugins": ["react", "prettier"],
"rules": {
"no-console": "off",
"camelcase": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"react/jsx-no-bind": "off",
"no-undef": "off",
"react/jsx-filename-extension": "off",
"react/jsx-props-no-spreading": "off",
"no-restricted-syntax": "off",
"guard-for-in": "off",
"no-multi-assign": "off",
"no-shadow": "off",
"prefer-destructuring": "off",
"prefer-template": "off",
"no-inner-declarations": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"eqeqeq": "off",
"import/order": "off",
"no-unused-expressions": "off",
"consistent-return": "off",
"no-underscore-dangle": "off",
"dot-notation": "off",
"import/no-extraneous-dependencies": "off",
"no-template-curly-in-string": "off",
"import/no-dynamic-require": "off",
"prefer-object-spread": "off",
"react/require-default-props": "off"
}
}