-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
110 lines (110 loc) · 2.78 KB
/
.eslintrc
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
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"root": true,
"env": {
"node": true,
"es2024": true
},
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": [
"@typescript-eslint",
"import",
"unused-imports",
"sort-keys-fix",
"sort-destructure-keys",
"prettier",
"unicorn"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"settings": {
"import/resolver": {
"node": true,
"typescript": true
}
},
"rules": {
"no-console": "warn",
"prettier/prettier": ["error", {
"bracketSpacing": true,
"trailingComma": "all"
}],
"import/no-duplicates": "error",
"sort-keys-fix/sort-keys-fix": "error",
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/consistent-type-imports": "error",
"import/newline-after-import": ["error", { "count": 1 }],
"no-unused-vars": "off",
"unused-imports/no-unused-vars": [
"error",
{
"args": "after-used",
"argsIgnorePattern": "^_",
"vars": "all",
"varsIgnorePattern": "^_"
}
],
"padding-line-between-statements": [
"error",
{ "blankLine": "always", "prev": "directive", "next": "*" },
{ "blankLine": "any", "prev": "directive", "next": "directive" },
{ "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" },
{ "blankLine": "any", "prev": ["const", "let", "var"], "next": ["const", "let", "var"] },
{ "blankLine": "always", "prev": "*", "next": "return" }
],
"sort-destructure-keys/sort-destructure-keys": [
"error",
{
"caseSensitive": true
}
],
"sort-keys": [
"error",
"asc",
{
"minKeys": 2,
"natural": false,
"caseSensitive": true
}
],
"sort-imports": [
"error",
{
"ignoreCase": false,
"ignoreMemberSort": false,
"allowSeparatedGroups": true,
"ignoreDeclarationSort": true,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}
],
"import/order": [
"error",
{
"groups": [
"type",
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"unknown",
"object"
],
"pathGroupsExcludedImportTypes": ["type"],
"newlines-between": "always",
"warnOnUnassignedImports": true,
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"unicorn/better-regex": "error",
"unicorn/prefer-node-protocol": "error",
"unicorn/no-useless-promise-resolve-reject": "error"
}
}