Skip to content

Commit b43e976

Browse files
committed
🚨 Use recommended config of typescript-eslint
Signed-off-by: kei-g <[email protected]>
1 parent b2bea48 commit b43e976

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

eslint.config.mjs

+14-9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import tslint from 'typescript-eslint'
33

44
/** @type {import('eslint').Linter.Config[]} */
55
export default [
6+
...tslint.configs.recommended,
67
{
78
files: [
89
'src/**/*.ts',
@@ -21,6 +22,18 @@ export default [
2122
tslint: tslint.plugin,
2223
},
2324
rules: {
25+
'@typescript-eslint/no-unused-vars': [
26+
'warn',
27+
{
28+
args: 'all',
29+
argsIgnorePattern: '^_',
30+
caughtErrors: 'all',
31+
caughtErrorsIgnorePattern: '^_',
32+
destructuredArrayIgnorePattern: '^_',
33+
ignoreRestSiblings: true,
34+
varsIgnorePattern: '^_',
35+
},
36+
],
2437
complexity: [
2538
'error',
2639
4,
@@ -38,15 +51,7 @@ export default [
3851
],
3952
'no-control-regex': 'off',
4053
'no-namespace': 'off',
41-
'no-unused-vars': [
42-
'warn',
43-
{
44-
'argsIgnorePattern': '^_',
45-
'caughtErrorsIgnorePattern': '^_',
46-
'destructuredArrayIgnorePattern': '^_',
47-
'varsIgnorePattern': '^_',
48-
},
49-
],
54+
'no-unused-vars': 'off',
5055
quotes: [
5156
'error',
5257
'single',

src/lib/async-iterable-queue.ts

-3
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,8 @@ class AIQAsyncIterator<T> implements AsyncIterator<T> {
4949
*/
5050
enum AIQState {
5151
// NOTE: - False positive warnings
52-
// eslint-disable-next-line no-unused-vars
5352
ending = 1,
54-
// eslint-disable-next-line no-unused-vars
5553
finished = 2,
56-
// eslint-disable-next-line no-unused-vars
5754
undefined = 0,
5855
}
5956

0 commit comments

Comments
 (0)