-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy patheslint.config.js
59 lines (55 loc) · 1.9 KB
/
eslint.config.js
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
import tseslint from "typescript-eslint";
import stylistic from "@stylistic/eslint-plugin";
// @ts-expect-error No types available
import importPlugin from "eslint-plugin-import";
export default tseslint.config(
...tseslint.configs.recommendedTypeChecked,
...tseslint.configs.stylisticTypeChecked,
importPlugin.flatConfigs.recommended, // eslint-disable-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
importPlugin.flatConfigs.typescript, // eslint-disable-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
stylistic.configs.customize({
arrowParens: true,
braceStyle: "1tbs",
commaDangle: "never",
jsx: false,
quotes: "double",
semi: true
}),
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname
}
},
settings: {
"import/resolver": {
typescript: {}
}
},
rules: {
// TypeScript
"@typescript-eslint/no-unused-vars": ["error", {
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_"
}],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
"no-console": "error",
// Imports
"import/extensions": ["error", "ignorePackages"],
// "import/newline-after-import": ["error", {
// count: 2,
// exactCount: false,
// considerComments: true
// }], // Doesn't respect @import
// Stylistic
"@stylistic/yield-star-spacing": ["error", "after"],
"@stylistic/multiline-ternary": "off",
"@stylistic/no-mixed-operators": "off",
"@stylistic/no-multiple-empty-lines": ["error", { max: 2, maxEOF: 0, maxBOF: 0 }], // Allow max=2 for imports
"@stylistic/quote-props": ["error", "as-needed"]
}
}
);