-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
134 lines (133 loc) · 4.17 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"env": {
"browser": true, // Browser global variables like `window` etc.
"commonjs": true, // CommonJS global variables and CommonJS scoping.Allows require, exports and module.
"es2021": true, // Enable all ECMAScript features except for modules.
"jest": true, // Jest global variables like `it` etc.
"node": true // Defines things like process.env when generating through node
},
"globals": {
"Celestial": true
},
"extends": [
"eslint:recommended",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended",
"plugin:jest/recommended",
"plugin:testing-library/react",
"plugin:import/typescript",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [
{
"files": ["**/*.ts?(x)"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-array-constructor": "warn",
"no-array-constructor": "off"
}
}
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"import",
"sort-keys",
"@typescript-eslint",
"prettier"
],
"root": true, // For configuration cascading.
"rules": {
"jest/no-mocks-import": "off",
"react/react-in-jsx-scope": "off",
"comma-dangle": ["warn", "never"],
"eol-last": "error",
"jsx-quotes": ["warn", "prefer-single"],
"max-len": [
"warn",
{
"code": 120,
"ignoreTemplateLiterals": true,
"ignoreStrings": true
}
],
"no-console": [
"warn",
{
"allow": ["warn", "error"]
}
],
"no-duplicate-imports": "warn",
"no-restricted-imports": [
"error",
{
"paths": [
{
"message": "Please use import foo from 'lodash-es/foo' instead.",
"name": "lodash"
},
{
"message": "Avoid using chain since it is non tree-shakable. Try out flow instead.",
"name": "lodash-es/chain"
},
{
"importNames": ["chain"],
"message": "Avoid using chain since it is non tree-shakable. Try out flow instead.",
"name": "lodash-es"
},
{
"message": "Please use import foo from 'lodash-es/foo' instead.",
"name": "lodash-es"
}
],
"patterns": ["lodash/**", "lodash/fp/**"]
}
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/no-unused-vars": "warn",
"object-curly-spacing": ["warn", "always"],
"quotes": ["warn", "single"],
"sort-imports": [
"warn",
{
"ignoreCase": false,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false
}
],
"sort-keys/sort-keys-fix": [
"warn",
"asc",
{
"caseSensitive": true,
"minKeys": 2,
"natural": false
}
],
"react/no-unknown-property": "off",
"@typescript-eslint/no-explicit-any": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}