-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patheslint.config.mjs
273 lines (260 loc) · 8.88 KB
/
eslint.config.mjs
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import { createRequire } from 'node:module'
import path from 'node:path'
import url from 'node:url'
import {
convertIgnorePatternToMinimatch,
includeIgnoreFile
} from '@eslint/compat'
import jsPlugin from '@eslint/js'
import tsParser from '@typescript-eslint/parser'
import { createTypeScriptImportResolver } from 'eslint-import-resolver-typescript'
import { flatConfigs as origImportXFlatConfigs } from 'eslint-plugin-import-x'
import jsdocPlugin from 'eslint-plugin-jsdoc'
import nodePlugin from 'eslint-plugin-n'
import sortDestructureKeysPlugin from 'eslint-plugin-sort-destructure-keys'
import unicornPlugin from 'eslint-plugin-unicorn'
import globals from 'globals'
import tsEslint from 'typescript-eslint'
import constants from '@socketsecurity/registry/lib/constants'
const __filename = url.fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const require = createRequire(import.meta.url)
const { BIOME_JSON, GITIGNORE, LATEST, TSCONFIG_JSON } = constants
const rootPath = __dirname
const rootTsConfigPath = path.join(rootPath, TSCONFIG_JSON)
const biomeConfigPath = path.join(rootPath, BIOME_JSON)
const gitignorePath = path.join(rootPath, GITIGNORE)
const biomeConfig = require(biomeConfigPath)
const nodeGlobalsConfig = Object.fromEntries(
Object.entries(globals.node).map(([k]) => [k, 'readonly'])
)
const sharedPlugins = {
...nodePlugin.configs['flat/recommended-script'].plugins,
'sort-destructure-keys': sortDestructureKeysPlugin,
unicorn: unicornPlugin
}
const sharedRules = {
'n/exports-style': ['error', 'module.exports'],
'n/no-missing-require': ['off'],
// The n/no-unpublished-bin rule does does not support non-trivial glob
// patterns used in package.json "files" fields. In those cases we simplify
// the glob patterns used.
'n/no-unpublished-bin': 'error',
'n/no-unsupported-features/es-builtins': 'error',
'n/no-unsupported-features/es-syntax': 'error',
'n/no-unsupported-features/node-builtins': [
'error',
{
ignores: ['test', 'test.describe'],
// Lazily access constants.maintainedNodeVersions.
version: constants.maintainedNodeVersions.current
}
],
'n/prefer-node-protocol': 'error',
'unicorn/consistent-function-scoping': 'error',
curly: 'error',
'no-await-in-loop': 'error',
'no-control-regex': 'error',
'no-empty': ['error', { allowEmptyCatch: true }],
'no-new': 'error',
'no-proto': 'error',
'no-undef': 'error',
'no-unused-vars': [
'error',
{
argsIgnorePattern: '^_|^this$',
ignoreRestSiblings: true,
varsIgnorePattern: '^_'
}
],
'no-var': 'error',
'no-warning-comments': ['warn', { terms: ['fixme'] }],
'prefer-const': 'error',
'sort-destructure-keys/sort-destructure-keys': 'error',
'sort-imports': ['error', { ignoreDeclarationSort: true }]
}
const sharedRulesForImportX = {
...origImportXFlatConfigs.recommended.rules,
'import-x/extensions': [
'error',
'never',
{
cjs: 'ignorePackages',
js: 'ignorePackages',
json: 'always',
mjs: 'ignorePackages'
}
],
'import-x/order': [
'warn',
{
groups: [
'builtin',
'external',
'internal',
['parent', 'sibling', 'index'],
'type'
],
pathGroups: [
{
pattern: '@socket{registry,security}/**',
group: 'internal'
}
],
pathGroupsExcludedImportTypes: ['type'],
'newlines-between': 'always',
alphabetize: {
order: 'asc'
}
}
]
}
function getImportXFlatConfigs(isEsm) {
return {
recommended: {
...origImportXFlatConfigs.recommended,
languageOptions: {
...origImportXFlatConfigs.recommended.languageOptions,
ecmaVersion: LATEST,
sourceType: isEsm ? 'module' : 'script'
},
rules: {
...sharedRulesForImportX,
'import-x/no-named-as-default-member': 'off'
}
},
typescript: {
...origImportXFlatConfigs.typescript,
plugins: origImportXFlatConfigs.recommended.plugins,
settings: {
...origImportXFlatConfigs.typescript.settings,
'import-x/resolver-next': [
createTypeScriptImportResolver({
project: rootTsConfigPath
})
]
},
rules: {
...sharedRulesForImportX,
// TypeScript compilation already ensures that named imports exist in
// the referenced module.
'import-x/named': 'off',
'import-x/no-named-as-default-member': 'off',
'import-x/no-unresolved': 'off'
}
}
}
}
const importFlatConfigsForScript = getImportXFlatConfigs(false)
const importFlatConfigsForModule = getImportXFlatConfigs(true)
export default [
includeIgnoreFile(gitignorePath),
{
name: 'Imported biome.json ignore patterns',
ignores: biomeConfig.files.ignore.map(convertIgnorePatternToMinimatch)
},
{
files: ['**/*.{cts,mts,ts}'],
...jsPlugin.configs.recommended,
...importFlatConfigsForModule.typescript,
languageOptions: {
...jsPlugin.configs.recommended.languageOptions,
...importFlatConfigsForModule.typescript.languageOptions,
globals: {
...jsPlugin.configs.recommended.languageOptions?.globals,
...importFlatConfigsForModule.typescript.languageOptions?.globals,
...nodeGlobalsConfig,
BufferConstructor: 'readonly',
BufferEncoding: 'readonly',
NodeJS: 'readonly'
},
parser: tsParser,
parserOptions: {
...jsPlugin.configs.recommended.languageOptions?.parserOptions,
...importFlatConfigsForModule.typescript.languageOptions?.parserOptions,
projectService: {
...importFlatConfigsForModule.typescript.languageOptions
?.parserOptions?.projectService,
...jsdocPlugin.configs['flat/recommended'].languageOptions
?.parserOptions?.projectService,
allowDefaultProject: ['test/*.ts', 'types/*.ts', 'vitest.config.mts'],
defaultProject: 'tsconfig.json',
tsconfigRootDir: rootPath,
// Need this to glob test files in src.
maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 100
}
}
},
linterOptions: {
...jsPlugin.configs.recommended.linterOptions,
...importFlatConfigsForModule.typescript.linterOptions,
reportUnusedDisableDirectives: 'off'
},
plugins: {
...jsPlugin.configs.recommended.plugins,
...importFlatConfigsForModule.typescript.plugins,
...sharedPlugins,
'@typescript-eslint': tsEslint.plugin
},
rules: {
...jsPlugin.configs.recommended.rules,
...importFlatConfigsForModule.typescript.rules,
...sharedRules,
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
'@typescript-eslint/consistent-type-assertions': [
'error',
{ assertionStyle: 'as' }
],
'@typescript-eslint/no-misused-new': 'error',
'@typescript-eslint/no-this-alias': [
'error',
{ allowDestructuring: true }
],
// Returning unawaited promises in a try/catch/finally is dangerous
// (the `catch` won't catch if the promise is rejected, and the `finally`
// won't wait for the promise to resolve). Returning unawaited promises
// elsewhere is probably fine, but this lint rule doesn't have a way
// to only apply to try/catch/finally (the 'in-try-catch' option *enforces*
// not awaiting promises *outside* of try/catch/finally, which is not what
// we want), and it's nice to await before returning anyways, since you get
// a slightly more comprehensive stack trace upon promise rejection.
'@typescript-eslint/return-await': ['error', 'always'],
// Disable the following rules because they don't play well with TypeScript.
'no-redeclare': 'off',
'no-unused-vars': 'off'
}
},
{
files: ['**/*.{cjs,js}'],
...jsPlugin.configs.recommended,
...importFlatConfigsForScript.recommended,
...nodePlugin.configs['flat/recommended-script'],
languageOptions: {
...jsPlugin.configs.recommended.languageOptions,
...importFlatConfigsForModule.recommended.languageOptions,
...nodePlugin.configs['flat/recommended-script'].languageOptions,
globals: {
...jsPlugin.configs.recommended.languageOptions?.globals,
...importFlatConfigsForModule.recommended.languageOptions?.globals,
...nodePlugin.configs['flat/recommended-script'].languageOptions
?.globals,
...nodeGlobalsConfig
}
},
plugins: {
...jsPlugin.configs.recommended.plugins,
...importFlatConfigsForScript.recommended.plugins,
...sharedPlugins
},
rules: {
...jsPlugin.configs.recommended.rules,
...importFlatConfigsForScript.recommended.rules,
...nodePlugin.configs['flat/recommended-script'].rules,
...sharedRules
}
},
{
files: ['src/**/*.{cjs,js}'],
...jsdocPlugin.configs['flat/recommended']
}
]