-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
51 lines (51 loc) · 1.4 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
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"es6": true
},
"extends": ["plugin:react/recommended", "airbnb","plugin:jsdoc/recommended"],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "jsdoc"],
"rules": {
"implicit-arrow-linebreak": "off",
"no-param-reassign": ["error", { "props": false }],
"arrow-body-style": "off",
"radix": "off",
"nonblock-statement-body-position": ["error", "below"],
"operator-linebreak": "off",
"import/no-cycle": "off",
"indent": "off",
"no-use-before-define": "off",
"no-undef": "off",
"react/function-component-definition": [
2,
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"jsx-quotes": ["error", "prefer-single"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"object-curly-newline": [
"error",
{
"ObjectPattern": { "multiline": true }
}
],
"react/prop-types": "off",
"consistent-return": "off",
"array-callback-return": "off",
"react/no-array-index-key": "off",
"react/no-unstable-nested-components": "off",
"no-underscore-dangle": ["error", { "allow": ["_raw"] }],
"global-require": "off",
"react/jsx-props-no-spreading": "off",
"jsdoc/check-access": 1
}
}