-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
50 lines (50 loc) · 1.11 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
48
49
50
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es2021": true,
"jest": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"airbnb",
"plugin:prettier/recommended"
],
"rules": {
"quotes": [
2,
"double"
],
"semi": [
2,
"always"
],
"no-restricted-syntax": [
"error",
"LabeledStatement",
"WithStatement"
],
"camelcase": "off",
"comma-dangle": "off",
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"no-console": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"prefer-destructuring": "off",
"react/destructuring-assignment": "off",
"react/jsx-filename-extension": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-wrap-multilines": "off",
"react/no-unescaped-entities": "off",
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"jsx-a11y/media-has-caption": "off"
}
}