-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy patheslint.config.js
217 lines (214 loc) · 5.87 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import globals from "globals";
import jsPlugin from "@eslint/js";
import tsPlugin from "typescript-eslint";
import prettierOverrides from "eslint-config-prettier";
import prettierRules from "eslint-plugin-prettier/recommended";
import unicornPlugin from "eslint-plugin-unicorn";
import allowedDepsPlugin from "eslint-plugin-allowed-dependencies";
const peformanceConcerns = [
{
selector: "ImportDeclaration[source.value=/assert/]", // #2169
message: "assert is slow, use throw",
},
{
selector: "MemberExpression[object.name='process'][property.name='env']", // #2144
message: "Reading process.env is slow and must be memoized",
},
{
selector: "CallExpression > Identifier[name='toPairs']", // #2168
message: "R.toPairs() is 1.1x slower than Object.entries()",
},
{
selector:
"CallExpression[callee.name='keys'], CallExpression[callee.name='keysIn']", // #2168
message: "R.keys() and keysIn() are 1.2x slower than Object.keys()",
},
{
selector: "CallExpression[callee.property.name='flatMap']", // #2209
message: "flatMap() is about 1.3x slower than R.chain()",
},
];
const tsFactoryConcerns = [
{
selector: "Identifier[name='createConditionalExpression']",
message: "use makeTernary() helper",
},
{
selector: "Identifier[name='createArrowFunction']",
message: "use makeArrowFn() helper",
},
{
selector: "Identifier[name='createTypeParameterDeclaration']",
message: "use makeTypeParams() helper",
},
{
selector: "Identifier[name='createInterfaceDeclaration']",
message: "use makeInterface() helper",
},
{
selector: "Identifier[name='createClassDeclaration']",
message: "use makePublicClass() helper",
},
{
selector: "Identifier[name='createMethodDeclaration']",
message: "use makePublicMethod() helper",
},
{
selector: "Identifier[name='createTypeAliasDeclaration']",
message: "use makeType() or makePublicLiteralType() helpers",
},
{
selector: "Identifier[name='createVariableStatement']",
message: "use makeConst() helper",
},
{
selector: "Identifier[name='createArrayBindingPattern']",
message: "use makeDeconstruction() helper",
},
{
selector: "Identifier[name='createPropertySignature']",
message: "use makeInterfaceProp() helper",
},
{
selector: "Identifier[name='createConstructorDeclaration']",
message: "use makePublicConstructor() helper",
},
{
selector: "Identifier[name='createParameterDeclaration']",
message: "use makeParam() or makeParams() helpers",
},
{
selector: "Identifier[name='createCallExpression']",
message: "use makeCall() helper",
},
{
selector: "Identifier[name='KeyOfKeyword']",
message: "use makeKeyOf() helper",
},
{
selector: "Identifier[name='createTemplateExpression']",
message: "use makeTemplate() helper",
},
{
selector: "Identifier[name='createNewExpression']",
message: "use makeNew() helper",
},
{
selector: "Literal[value='Promise']",
message: "use makePromise() helper",
},
{
selector: "Identifier[name=/^create(TypeReference|KeywordType)Node$/]",
message: "use ensureTypeNode() helper",
},
{
selector: "Literal[value='Extract']",
message: "use makeExtract() helper",
},
{
selector: "Identifier[name='EqualsToken']",
message: "use makeAssignment() helper",
},
{
selector: "Identifier[name='createIndexedAccessTypeNode']",
message: "use makeIndexed() helper",
},
{
selector: "Identifier[name='createFunctionTypeNode']",
message: "use makeFnType() helper",
},
{
selector: "Identifier[name='createLiteralTypeNode']",
message: "use makeLiteralType() helper",
},
{
selector:
"Identifier[name=/^create(NumericLiteral|StringLiteral|True|False|Null)$/]",
message: "use literally() helper",
},
];
export default tsPlugin.config(
{
languageOptions: { globals: globals.node },
plugins: {
unicorn: unicornPlugin,
allowed: allowedDepsPlugin,
},
},
jsPlugin.configs.recommended,
tsPlugin.configs.recommended,
prettierOverrides,
prettierRules,
{ name: "globally/ignored", ignores: ["dist/", "coverage/", "migration/"] },
{
name: "globally/disabled",
rules: {
"no-empty": ["error", { allowEmptyCatch: true }],
"no-empty-pattern": ["error", { allowObjectPatternsAsParameters: true }],
},
},
{
name: "globally/enabled",
rules: {
curly: ["warn", "multi-or-nest", "consistent"],
"unicorn/prefer-node-protocol": "error",
"@typescript-eslint/no-shadow": "warn",
},
},
{
name: "source/all",
files: ["src/*.ts"],
rules: {
"allowed/dependencies": ["error", { typeOnly: ["eslint", "prettier"] }],
"no-restricted-syntax": ["warn", ...peformanceConcerns],
},
},
{
name: "source/plugin",
files: ["src/zod-plugin.ts"],
rules: {
"@typescript-eslint/no-unused-vars": "off",
},
},
{
name: "source/integration",
files: ["src/integration.ts", "src/integration-base.ts", "src/zts.ts"],
rules: {
"no-restricted-syntax": [
"warn",
...peformanceConcerns,
...tsFactoryConcerns,
],
},
},
{
name: "source/migration",
files: ["src/migration.ts"],
rules: {
"allowed/dependencies": [
"error",
{ ignore: ["^@typescript-eslint", "^\\."] },
],
},
},
{
name: "tests/all",
files: ["tests/**/*.ts", "vitest.setup.ts"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-object-type": "warn",
},
},
{
name: "generated/all",
files: ["tests/*/quick-start.ts", "example/example.client.ts"],
rules: {
"prettier/prettier": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-object-type": [
"error",
{ allowObjectTypes: "always" },
],
},
},
);