-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
eslint.config.js
180 lines (178 loc) · 5.33 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
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()",
},
];
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",
},
},
{
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"],
rules: {
"no-restricted-syntax": [
"warn",
{
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 makePublicInterface() 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='createVariableDeclarationList']",
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 makeEmptyInitializingConstructor() helper",
},
{
selector: "Identifier[name='createParameterDeclaration']",
message: "use makeParam() or makeParams() helpers",
},
{
selector:
"CallExpression[callee.property.name='createCallExpression']" +
"[arguments.0.callee.property.name='createPropertyAccessExpression']",
message: "use makePropCall() helper",
},
{
selector: "Identifier[name='AmpersandAmpersandToken']",
message: "use makeAnd() helper",
},
{
selector: "Identifier[name='EqualsEqualsEqualsToken']",
message: "use makeEqual() helper",
},
{
selector: "Identifier[name='KeyOfKeyword']",
message: "use makeKeyOf() helper",
},
],
},
},
{
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" },
],
},
},
);