-
Notifications
You must be signed in to change notification settings - Fork 13
/
eslint.config.js
197 lines (187 loc) · 6.37 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
'use strict'
const path = require('node:path')
const { includeIgnoreFile } = require('@eslint/compat')
const js = require('@eslint/js')
const tsParser = require('@typescript-eslint/parser')
const importXPlugin = require('eslint-plugin-import-x')
const nodePlugin = require('eslint-plugin-n')
const sortDestructureKeysPlugin = require('eslint-plugin-sort-destructure-keys')
const unicornPlugin = require('eslint-plugin-unicorn')
const tsEslint = require('typescript-eslint')
const constants = require('@socketsecurity/registry/lib/constants')
const { flatConfigs: origImportXFlatConfigs } = importXPlugin
const rootPath = __dirname
const rootTsConfigPath = path.join(rootPath, 'tsconfig.json')
const gitignorePath = path.resolve(rootPath, '.gitignore')
const prettierignorePath = path.resolve(rootPath, '.prettierignore')
const sharedPlugins = {
'sort-destructure-keys': sortDestructureKeysPlugin,
unicorn: unicornPlugin
}
const sharedRules = {
'no-await-in-loop': ['error'],
'no-control-regex': ['error'],
'no-empty': ['error', { allowEmptyCatch: true }],
'no-new': ['error'],
'no-proto': ['error'],
'no-warning-comments': ['warn', { terms: ['fixme'] }],
'sort-destructure-keys/sort-destructure-keys': ['error'],
'sort-imports': ['error', { ignoreDeclarationSort: true }],
'unicorn/consistent-function-scoping': ['error']
}
const getImportXFlatConfigs = isEsm => ({
recommended: {
...origImportXFlatConfigs.recommended,
languageOptions: {
...origImportXFlatConfigs.recommended.languageOptions,
ecmaVersion: 'latest',
sourceType: isEsm ? 'module' : 'script'
},
rules: {
...origImportXFlatConfigs.recommended.rules,
'import-x/no-named-as-default-member': 'off',
'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'
}
}
]
}
},
typescript: {
...origImportXFlatConfigs.typescript,
settings: {
...origImportXFlatConfigs.typescript.settings,
'import-x/resolver': {
'eslint-import-resolver-oxc': {
tsConfig: {
configFile: rootTsConfigPath,
references: 'auto'
}
}
}
}
}
})
const importFlatConfigsForScript = getImportXFlatConfigs(false)
const importFlatConfigsForModule = getImportXFlatConfigs(true)
module.exports = [
includeIgnoreFile(gitignorePath),
includeIgnoreFile(prettierignorePath),
{
files: ['**/*.{c,}js'],
...importFlatConfigsForScript.recommended
},
// TODO: Make this work for our .mjs files too.
// {
// files: ['**/*.mjs'],
// ...importFlatConfigsForModule.recommended
// },
{
files: ['src/**/*.ts', 'test/**/*.ts'],
...importFlatConfigsForModule.typescript
},
{
files: ['src/**/*.ts', 'test/**/*.ts'],
languageOptions: {
parser: tsParser,
parserOptions: {
projectService: {
allowDefaultProject: ['test/*.ts'],
defaultProject: 'tsconfig.json',
tsconfigRootDir: rootPath
}
}
},
plugins: {
...sharedPlugins,
'@typescript-eslint': tsEslint.plugin
},
linterOptions: {
reportUnusedDisableDirectives: 'off'
},
rules: {
...sharedRules,
// Define @typescript-eslint/no-extraneous-class because oxlint defines
// "no-extraneous-class": ["deny"] and trying to eslint-disable it will
// cause an eslint "Definition not found" error otherwise.
'@typescript-eslint/no-extraneous-class': ['error'],
'@typescript-eslint/no-floating-promises': ['error'],
// Define @typescript-eslint/no-misused-new because oxlint defines
// "no-misused-new": ["deny"] and trying to eslint-disable it will
// cause an eslint "Definition not found" error otherwise.
'@typescript-eslint/no-misused-new': ['error'],
'@typescript-eslint/no-misused-promises': ['error'],
// Define @typescript-eslint/no-this-alias because oxlint defines
// "no-this-alias": ["deny"] and trying to eslint-disable it will
// cause an eslint "Definition not found" error otherwise.
'@typescript-eslint/no-this-alias': ['error'],
// 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']
}
},
{
files: ['test/**/*.ts'],
rules: {
'@typescript-eslint/no-floating-promises': 'off'
}
},
{
files: ['scripts/**/*.js', 'test/**/*.cjs'],
...nodePlugin.configs['flat/recommended-script']
},
{
files: ['scripts/**/*.js', 'test/**/*.cjs'],
plugins: {
...sharedPlugins
},
rules: {
...js.configs.recommended.rules,
...sharedRules,
'n/exports-style': ['error', 'module.exports'],
// 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.previous
}
],
'n/prefer-node-protocol': ['error'],
'no-unused-vars': [
'error',
{ argsIgnorePattern: '^_|^this$', ignoreRestSiblings: true }
]
}
}
]