-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheslint.config.mjs
221 lines (219 loc) · 7.14 KB
/
eslint.config.mjs
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
// @ts-check
import stylisticEslintPlugin from "@stylistic/eslint-plugin";
import stylisticJs from "@stylistic/eslint-plugin-js";
import globals from "globals";
import jest from "eslint-plugin-jest";
import json from "eslint-plugin-json";
import react from "eslint-plugin-react";
import reactHooks from "eslint-plugin-react-hooks";
import testingLibrary from "eslint-plugin-testing-library";
import tsParser from "@typescript-eslint/parser";
import typescriptEslint, { configs as tsConfigs } from "typescript-eslint";
import js from "@eslint/js";
import comments from "@eslint-community/eslint-plugin-eslint-comments/configs";
import { flatConfigs as importPluginConfig } from "eslint-plugin-import";
import playwright from "eslint-plugin-playwright";
// This helper `config()` function replaces the basic [] used by
// eslint normally:
// https://typescript-eslint.io/packages/typescript-eslint#config
export default typescriptEslint.config(
{
name: "ignore dist and node_modules",
ignores: [
"dist/",
"node_modules/",
".vscode/",
"playwright-report/",
"test-results/"
]
},
js.configs.recommended,
tsConfigs.recommended,
tsConfigs.stylistic,
// @ts-expect-error for some reason the rules in comments.recommend are not compatible with
// RuleEntry. In another project using typescript 5.8.2, this was not an issue.
comments.recommended,
importPluginConfig.recommended,
importPluginConfig.typescript,
react.configs.flat?.recommended,
reactHooks.configs["recommended-latest"],
{
name: "browser files",
files: ["src/**"],
languageOptions: {
globals: globals.browser
}
},
{
name: "general rules",
plugins: {
"@stylistic": stylisticEslintPlugin,
"@stylistic/js": stylisticJs,
},
languageOptions: {
parser: tsParser,
ecmaVersion: 2018,
sourceType: "module",
},
linterOptions: {
reportUnusedDisableDirectives: false
},
settings: {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
typescript: {
alwaysTryTypes: true,
project: "."
}
},
react: {
pragma: "React",
version: "detect"
}
},
rules: {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-confusing-non-null-assertion": "error",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/no-shadow": ["error", { builtinGlobals: false, hoist: "all", allow: [] }],
"@typescript-eslint/no-unused-vars": ["warn", { args: "none", ignoreRestSiblings: true }],
"@stylistic/semi": ["warn", "always"],
"curly": ["error", "multi-line", "consistent"],
"dot-notation": "error",
"eol-last": "warn",
"eqeqeq": ["error", "smart"],
"@eslint-community/eslint-comments/no-unused-disable": "off", // enabled in eslint.build.config.mjs
// Note: this has caused slowdowns in large projects
"import/no-cycle": "warn",
// Note: this has caused problems with overridden or aliased dependencies
// like the Concord mobx-state-tree override
"import/no-extraneous-dependencies": "warn",
"import/no-useless-path-segments": "warn",
"@stylistic/js/jsx-quotes": ["error", "prefer-double"],
"max-len": ["warn", { code: 120, ignoreUrls: true }],
"no-bitwise": "error",
"no-debugger": "off",
"no-duplicate-imports": "error",
"no-sequences": "error",
"no-shadow": "off", // superseded by @typescript-eslint/no-shadow
"no-tabs": "error",
"no-unneeded-ternary": "error",
// there is a recommended typescript rule for this too, so this might be redundant
"no-unused-expressions": ["error", { allowShortCircuit: true }],
"no-unused-vars": "off", // superseded by @typescript-eslint/no-unused-vars
"no-useless-call": "error",
"no-useless-concat": "error",
"no-useless-rename": "error",
"no-useless-return": "error",
"no-var": "error",
"no-whitespace-before-property": "error",
"object-shorthand": "error",
"prefer-const": ["error", { destructuring: "all" }],
"prefer-object-spread": "error",
"prefer-regex-literals": "error",
"prefer-rest-params": "error",
"prefer-spread": "error",
"quotes": ["error", "double", { allowTemplateLiterals: true, avoidEscape: true }],
"radix": "error",
"react/jsx-closing-tag-location": "error",
"react/jsx-handler-names": "off",
"react/jsx-no-useless-fragment": "error",
"react/no-access-state-in-setstate": "error",
"react/no-danger": "error",
"react/no-unsafe": ["off", { checkAliases: true }],
"react/no-unused-state": "error",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
},
},
// The projectService is required to use the @typescript-eslint/prefer-optional-chain rule
// The projectService does not work well with files that aren't configured by a tsconfig.json
// file, so we only apply it to the files in src and playwright.
{
name: "rules only for project and playwright typescript files",
files: ["src/**/*.ts", "src/**/*.tsx", "playwright/**/*.ts", "playwright/**/*.tsx"],
languageOptions: {
parserOptions: {
projectService: true,
},
},
rules: {
"@typescript-eslint/prefer-optional-chain": "warn",
}
},
{
name: "rules specific to Jest tests",
files: ["src/**/*.test.*"],
languageOptions: {
globals: {
...globals.node,
...globals.jest
}
},
// ts eslint's config function adds back in the `extends` feature of the older eslint
extends: [
jest.configs["flat/recommended"],
testingLibrary.configs["flat/react"]
],
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
// require() can be useful in mocking
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-var-requires": "off",
"jest/no-done-callback": "off"
}
},
{
name: "rules specific to Playwright tests",
files: ["playwright/**"],
extends: [
playwright.configs["flat/recommended"]
]
},
{
name: "json files",
files: ["**/*.json"],
...json.configs.recommended
},
{
name: "eslint configs",
files: ["eslint.*.mjs"],
languageOptions: {
globals: {
...globals.node
},
},
},
{
name: "webpack configs",
files: ["webpack.config.js"],
languageOptions: {
globals: {
...globals.node
},
},
rules: {
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-var-requires": "off",
"quotes": ["error", "single", { allowTemplateLiterals: true, avoidEscape: true }],
}
},
{
name: "postcss",
files: ["postcss.config.js"],
languageOptions: {
globals: {
...globals.node
},
},
rules: {
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-var-requires": "off",
"quotes": ["error", "single"],
}
}
);