-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
47 lines (47 loc) · 1.46 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
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"jest": true,
"es6": true
},
"extends": ["airbnb", "prettier"],
"plugins": ["import", "react-hooks"],
"rules": {
"quotes": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/anchor-is-valid": "off",
"no-console": "off",
"no-underscore-dangle": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"object-curly-newline": "off",
"linebreak-style": "off",
"no-param-reassign": "off",
"react/jsx-props-no-spreading": "off",
"comma-dangle": "off",
"implicit-arrow-linebreak": "off",
"operator-linebreak": "off",
"indent": "off",
"import/prefer-default-export": "off",
"no-nested-ternary": "off",
"react/jsx-indent": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/button-has-type": "off",
"no-use-before-define": "off",
"camelcase": "off",
"react/jsx-one-expression-per-line": "off",
"react/no-array-index-key": "off",
"react/jsx-wrap-multilines": "off",
"import/no-extraneous-dependencies": "off"
}
}