-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
85 lines (85 loc) · 2.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-react"]
}
},
"extends": [
"react-app",
"airbnb",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"unused-imports"
],
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
},
"rules": {
// Prettier configs based on airbnb guide
"prettier/prettier": [
"warn",
{
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 100,
"proseWrap": "always",
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"endOfLine": "auto",
}
],
"react/jsx-filename-extension": [
"warn",
{
"extensions": [
".js",
".jsx"
]
}
],
"import/no-extraneous-dependencies": ["warn", {"devDependencies": true}],
"no-unused-vars": "off",
"no-console": "off",
"no-use-before-define": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off", // mutating redux state in redux-toolkit.
"import/no-unresolved": "off", // raw-loader
"global-require": "off", // raw-loader
"react/no-array-index-key": "off",
"react/no-unescaped-entities": "off",
"react/destructuring-assignment": "off",
"react/jsx-props-no-spreading": "off",
"react/state-in-constructor": "off",
"react/no-danger": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/require-default-props": "off",
"react/default-props-match-prop-types": "off",
"react/no-unused-prop-types": "off",
"react/react-in-jsx-scope": "off", // after react v17
"react/jsx-uses-react": "off", // after react v17
"react/jsx-no-bind": "off",
"unused-imports/no-unused-imports": "warn"
}
}