-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.ts
63 lines (62 loc) · 1.51 KB
/
eslint.config.ts
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
import js from "@eslint/js";
import simpleImportSort from "eslint-plugin-simple-import-sort";
import solid from "eslint-plugin-solid/configs/typescript";
import globals from "globals";
import tseslint from "typescript-eslint";
export default tseslint.config(
{
// config with just ignores is the replacement for `.eslintignore`
ignores: ["**/build/**", "**/coverage/**", "**/dist/**", "**/node_modules/**"],
},
js.configs.recommended,
tseslint.configs.strict,
{
plugins: {
"simple-import-sort": simpleImportSort,
},
rules: {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
},
},
{
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
sourceType: "module",
project: "./tsconfig.json",
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals.browser,
...globals.es2022,
},
},
plugins: solid.plugins,
rules: {
...solid.rules,
"@typescript-eslint/no-non-null-assertion": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
varsIgnorePattern: "^_",
argsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
},
],
},
},
{
files: ["__tests__/**/*.ts", "__tests__/**/*.tsx"],
languageOptions: {
globals: {
...globals.node,
...globals.vitest,
},
},
},
);