File tree 2 files changed +14
-12
lines changed
2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import tslint from 'typescript-eslint'
3
3
4
4
/** @type {import('eslint').Linter.Config[] } */
5
5
export default [
6
+ ...tslint . configs . recommended ,
6
7
{
7
8
files : [
8
9
'src/**/*.ts' ,
@@ -21,6 +22,18 @@ export default [
21
22
tslint : tslint . plugin ,
22
23
} ,
23
24
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
+ ] ,
24
37
complexity : [
25
38
'error' ,
26
39
4 ,
@@ -38,15 +51,7 @@ export default [
38
51
] ,
39
52
'no-control-regex' : 'off' ,
40
53
'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' ,
50
55
quotes : [
51
56
'error' ,
52
57
'single' ,
Original file line number Diff line number Diff line change @@ -49,11 +49,8 @@ class AIQAsyncIterator<T> implements AsyncIterator<T> {
49
49
*/
50
50
enum AIQState {
51
51
// NOTE: - False positive warnings
52
- // eslint-disable-next-line no-unused-vars
53
52
ending = 1 ,
54
- // eslint-disable-next-line no-unused-vars
55
53
finished = 2 ,
56
- // eslint-disable-next-line no-unused-vars
57
54
undefined = 0 ,
58
55
}
59
56
You can’t perform that action at this time.
0 commit comments