-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
118 lines (118 loc) · 3.11 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jest": true,
"node": true
},
"extends": [
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"eslint:recommended",
"plugin:eslint-comments/recommended",
"plugin:import/recommended",
"plugin:jest/recommended",
"plugin:jest/style",
"plugin:jest-dom/recommended",
"plugin:jest-formatting/recommended",
"plugin:jsx-a11y/recommended",
"plugin:lodash/recommended",
"plugin:promise/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:react-redux/recommended",
"plugin:security/recommended",
"plugin:testing-library/react",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:unicorn/recommended",
"plugin:you-dont-need-lodash-underscore/compatible",
"prettier"
],
"plugins": ["unicorn", "react", "lodash", "eslint-comments", "@emotion"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module",
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-env", "@babel/preset-react"]
}
},
"root": true,
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "@emotion/react",
"message": "Please import from @emotion/react/macro."
},
{
"name": "@emotion/styled",
"message": "Please import from @emotion/styled/macro."
}
],
"patterns": ["!@emotion/react/macro", "!@emotion/styled/macro"]
}
],
"unicorn/filename-case": [
"error",
{
"cases": {
"camelCase": true,
"pascalCase": true
}
}
],
"unicorn/prevent-abbreviations": [
"error",
{
"allowList": {
"props": true
}
}
],
"react/function-component-definition": [
"error",
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"react/prop-types": 0,
"react/require-default-props": 0,
"lodash/prefer-constant": 0,
"lodash/prefer-get": 0,
"lodash/prefer-includes": 0,
"lodash/prefer-is-nil": 0,
"lodash/prefer-lodash-chain": 0,
"lodash/prefer-lodash-method": 0,
"lodash/prefer-lodash-typecheck": 0,
"lodash/prefer-matches": 0,
"lodash/prefer-noop": 0,
"lodash/prefer-over-quantifier": 0,
"lodash/prefer-some": 0,
"lodash/prefer-startswith": 0,
"lodash/prefer-times": 0,
"eslint-comments/disable-enable-pair": ["error", { "allowWholeFile": true }],
"@emotion/pkg-renaming": "error",
"@emotion/no-vanilla": "error",
"@emotion/import-from-emotion": "error",
"@emotion/styled-import": "error",
"@emotion/syntax-preference": [2, "object"],
"react/no-unknown-property": ["error", { "ignore": ["css"] }]
}
}