-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy patheslint.config.mjs
106 lines (83 loc) · 2.31 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
import eslint from "@eslint/js";
import globals from "globals";
import stylisticJs from "@stylistic/eslint-plugin-js";
import stylisticTs from "@stylistic/eslint-plugin-ts";
import tseslint from "typescript-eslint";
const sharedOptions = {
js: {
files: ["**/*.{js,mjs}"],
languageOptions: {
sourceType: "module",
globals: {
...globals.browser,
...globals.node,
...globals.es2021,
...globals.webextensions,
},
},
},
ts: {
files: ["**/*.ts"],
languageOptions: {
sourceType: "module",
globals: {
...globals.browser,
...globals.node,
...globals.es2021,
...globals.webextensions,
},
parser: tseslint.parser,
parserOptions: {
project: "./tsconfig.eslint.json",
tsconfigRootDir: import.meta.dirname,
},
},
},
};
const overrides = {
js: {
...sharedOptions.js,
name: "web-eid/js/override",
plugins: { "@stylistic/js": stylisticJs },
rules: {
"sort-imports": ["error", { allowSeparatedGroups: true }],
"@stylistic/js/quotes": "error",
"@stylistic/js/key-spacing": ["error", { "align": "value" }],
"@stylistic/js/comma-dangle": ["error", "always-multiline"],
"@stylistic/js/object-curly-spacing": ["error", "always"],
"@stylistic/js/array-bracket-spacing": "error",
"@stylistic/js/indent": ["error", 2, { "SwitchCase": 1 }],
"@stylistic/js/semi": "error",
},
},
ts: {
...sharedOptions.ts,
name: "web-eid/ts/override",
plugins: {
"@typescript-eslint": tseslint.plugin,
"@stylistic/ts": stylisticTs,
},
rules: {
"@typescript-eslint/array-type": ["error", { default: "generic" }],
"@stylistic/ts/semi": "error",
},
},
};
export default [
{ ignores: ["dist/", "node_modules/"] },
{
name: "eslint/recommended",
...eslint.configs.recommended,
...sharedOptions.js,
},
...tseslint.configs.recommendedTypeChecked.map((recommended) => ({
...recommended,
...sharedOptions.ts,
})),
...tseslint.configs.stylisticTypeChecked.map((stylistic) => ({
...stylistic,
...sharedOptions.ts,
})),
overrides.js,
overrides.ts,
];