File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ module.exports = {
24
24
'@sentry-internal/sdk/no-eq-empty' : 'error' ,
25
25
26
26
// Unused variables should be removed unless they are marked with and underscore (ex. _varName).
27
- '@typescript-eslint/no-unused-vars' : [ 'warn ' , { argsIgnorePattern : '^_' } ] ,
27
+ '@typescript-eslint/no-unused-vars' : [ 'error ' , { argsIgnorePattern : '^_' } ] ,
28
28
29
29
// Make sure that all ts-ignore comments are given a description.
30
30
'@typescript-eslint/ban-ts-comment' : [
Original file line number Diff line number Diff line change 13
13
"noFallthroughCasesInSwitch" : true ,
14
14
"noImplicitReturns" : true ,
15
15
"noImplicitUseStrict" : true ,
16
- "noUnusedLocals" : true ,
17
- "noUnusedParameters" : true ,
16
+ "noUnusedLocals" : false ,
17
+ "noUnusedParameters" : false ,
18
18
"preserveWatchOutput" : true ,
19
19
"sourceMap" : true ,
20
20
"strict" : true ,
You can’t perform that action at this time.
0 commit comments