-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.cjs
86 lines (86 loc) · 2.11 KB
/
.eslintrc.cjs
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
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
project: "./**/(tsconfig.src|tsconfig.test|tsconfig.cli).json",
sourceType: "module",
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
],
plugins: ["@typescript-eslint", "import"],
settings: {
"import/resolver": {
typescript: {
alwaysTryTypes: true,
},
},
},
ignorePatterns: [
"**/*.d.ts",
"**/*.js",
"example/**/*",
"tests/**/*.test.ts",
],
rules: {
"@typescript-eslint/prefer-ts-expect-error": "error",
"@typescript-eslint/ban-ts-comment": [
"error",
{
"ts-nocheck": "allow-with-description",
"ts-nocheck": true,
},
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
varsIgnorePattern: "^_",
argsIgnorePattern: "^_",
args: "after-used",
},
],
// "no-console": "warn",
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/prefer-nullish-coalescing": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
"@typescript-eslint/method-signature-style": ["error", "property"],
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
"import/order": [
"error",
{
groups: [
"builtin",
"external",
"type",
"internal",
"parent",
"index",
"sibling",
"object",
"unknown",
],
pathGroups: [
// 上に書いたものが上に並ぶ
{
pattern: "@/**",
group: "internal",
position: "before",
},
{
pattern: "~/**",
group: "internal",
position: "before",
},
],
alphabetize: {
order: "asc",
},
"newlines-between": "never",
},
],
},
}