Skip to content

Commit a146f3b

Browse files
committed
1 parent 7c099f2 commit a146f3b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

index.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ module.exports = {
196196
allowDestructuring: true
197197
}
198198
],
199-
'@typescript-eslint/no-triple-slash-reference': 'error',
200199
'@typescript-eslint/no-unnecessary-qualifier': 'error',
201200
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
202201
'no-unused-vars': 'off',
@@ -232,6 +231,15 @@ module.exports = {
232231
'error',
233232
'always'
234233
],
234+
'@typescript-eslint/triple-slash-reference': [
235+
'error',
236+
{
237+
path: 'never',
238+
239+
// Cannot enable this until `@types/node` no longer has the `NodeJS` global
240+
// types: 'never'
241+
}
242+
],
235243
'@typescript-eslint/type-annotation-spacing': 'error',
236244

237245
// Disabled as it crashes on most code

0 commit comments

Comments
 (0)