forked from zama-ai/relayer-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
235 lines (219 loc) · 7.08 KB
/
eslint.config.js
File metadata and controls
235 lines (219 loc) · 7.08 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
const targetFiles = [
'src/sdk/**/*.ts',
'src/relayer-provider/**/*.ts',
'src/base/**/*.ts',
];
/** @type {import('typescript-eslint').ConfigArray} */
export default [
// Global ignores
{
ignores: [
'node_modules/**',
'dist/**',
'dist.tmp/**',
'lib/**',
'bundle/**',
'coverage/**',
'**/*.test.ts',
'**/*.js',
'**/*.cjs',
'**/*.mjs',
],
},
// Base ESLint recommended config
{
...eslint.configs.recommended,
files: targetFiles,
},
// TypeScript ESLint strict type-checked configs
...tseslint.configs.strictTypeChecked.map((config) => ({
...config,
files: targetFiles,
})),
// TypeScript ESLint stylistic type-checked configs
...tseslint.configs.stylisticTypeChecked.map((config) => ({
...config,
files: targetFiles,
})),
// TypeScript ESLint strict rules for the target folders only
{
files: targetFiles,
languageOptions: {
parser: tseslint.parser,
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
// Strict type safety
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-unsafe-assignment': 'error',
'@typescript-eslint/no-unsafe-call': 'error',
'@typescript-eslint/no-unsafe-member-access': 'error',
'@typescript-eslint/no-unsafe-return': 'error',
'@typescript-eslint/no-unsafe-argument': 'error',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
// Require explicit return types
'@typescript-eslint/explicit-function-return-type': [
'error',
{
allowExpressions: true,
allowTypedFunctionExpressions: true,
allowHigherOrderFunctions: true,
allowDirectConstAssertionInArrowFunctions: true,
},
],
'@typescript-eslint/explicit-module-boundary-types': 'error',
// Strict null checks
'@typescript-eslint/no-non-null-assertion': 'error',
'@typescript-eslint/strict-boolean-expressions': [
'error',
{
allowString: false,
allowNumber: false,
allowNullableObject: true,
allowNullableBoolean: false,
allowNullableString: false,
allowNullableNumber: false,
allowAny: false,
},
],
// Prevent common mistakes
'@typescript-eslint/no-floating-promises': 'error',
'@typescript-eslint/no-misused-promises': 'error',
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/require-await': 'error',
'@typescript-eslint/no-unnecessary-condition': 'error',
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
'@typescript-eslint/no-redundant-type-constituents': 'error',
// Code quality
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/prefer-nullish-coalescing': 'error',
'@typescript-eslint/prefer-optional-chain': 'error',
'@typescript-eslint/prefer-readonly': 'error',
'@typescript-eslint/prefer-as-const': 'error',
// Consistent code style
'@typescript-eslint/consistent-type-imports': [
'error',
{ prefer: 'type-imports', fixStyle: 'separate-type-imports' },
],
'@typescript-eslint/consistent-type-exports': [
'error',
{ fixMixedExportsWithInlineTypeSpecifier: false },
],
'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
'@typescript-eslint/consistent-indexed-object-style': ['error', 'record'],
// Naming conventions
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'interface',
format: ['PascalCase'],
},
{
selector: 'typeAlias',
format: ['PascalCase'],
},
{
selector: 'enum',
format: ['PascalCase'],
},
{
selector: 'enumMember',
format: ['UPPER_CASE', 'PascalCase'],
},
{
selector: 'variable',
modifiers: ['const'],
format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
},
{
selector: 'function',
format: ['camelCase', 'PascalCase'],
leadingUnderscore: 'allow',
},
{
selector: 'parameter',
format: ['camelCase'],
leadingUnderscore: 'allow',
},
{
selector: 'class',
format: ['PascalCase'],
},
],
// Prevent problematic patterns
'@typescript-eslint/no-confusing-void-expression': 'error',
'@typescript-eslint/no-meaningless-void-operator': 'error',
'@typescript-eslint/no-mixed-enums': 'error',
'@typescript-eslint/no-useless-empty-export': 'error',
'@typescript-eslint/prefer-enum-initializers': 'error',
'@typescript-eslint/prefer-includes': 'error',
'@typescript-eslint/prefer-string-starts-ends-with': 'error',
'@typescript-eslint/switch-exhaustiveness-check': 'error',
'@typescript-eslint/unified-signatures': 'error',
// Disable base ESLint rules that conflict with TypeScript
'no-unused-vars': 'off',
'no-shadow': 'off',
'no-undef': 'off',
// Prevent Node.js-specific globals in browser code
'no-restricted-globals': [
'error',
{
name: 'process',
message:
'process is Node.js specific and not available in browsers. Use a browser-compatible alternative.',
},
{
name: 'Buffer',
message:
'Buffer is Node.js specific. Use Uint8Array or TextEncoder/TextDecoder instead.',
},
{
name: '__dirname',
message:
'__dirname is Node.js specific. Use import.meta.url instead.',
},
{
name: '__filename',
message:
'__filename is Node.js specific. Use import.meta.url instead.',
},
{
name: 'global',
message:
'global is Node.js specific. Use globalThis for cross-platform compatibility.',
},
],
},
},
// TypeScript declaration files (.d.ts) - relaxed rules
{
files: [
'src/sdk/**/*.d.ts',
'src/relayer-provider/**/*.d.ts',
'src/base/**/*.d.ts',
],
rules: {
'@typescript-eslint/consistent-type-definitions': 'off', // Allow both interface and type
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-explicit-any': 'warn', // Warn instead of error for .d.ts
},
},
];