You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Disabled as the `@typescript-eslint/no-unused-vars` rule is buggy and marks arguments in overloads as unused... For example: https://github.com/sindresorhus/pageres/blob/6785f65efb354da364da858dba4c192891629971/source/index.ts#L109
397
399
'no-unused-vars': 'off',
398
-
'@typescript-eslint/no-unused-vars': [
399
-
'error',
400
-
{
401
-
vars: 'all',
402
-
args: 'after-used',
403
-
ignoreRestSiblings: true,
404
-
argsIgnorePattern: /^_/.source,
405
-
caughtErrors: 'all',
406
-
caughtErrorsIgnorePattern: /^_$/.source
407
-
}
408
-
],
400
+
// '@typescript-eslint/no-unused-vars': [
401
+
// 'error',
402
+
// {
403
+
// vars: 'all',
404
+
// args: 'after-used',
405
+
// ignoreRestSiblings: true,
406
+
// argsIgnorePattern: /^_/.source,
407
+
// caughtErrors: 'all',
408
+
// caughtErrorsIgnorePattern: /^_$/.source
409
+
// }
410
+
// ],
409
411
410
412
// Disabled for now as it's marked as experimental.
0 commit comments