Skip to content

Commit b070884

Browse files
committed
changes to lint rules
1 parent 010535b commit b070884

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.eslintrc.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ module.exports = {
1010
files: ['*.ts'],
1111
rules: {
1212
radix: 'off',
13+
'no-unused-vars': 'off',
14+
'@typescript-eslint/no-unused-vars': 'off',
1315
'accessor-pairs': 'off',
1416
'return-undefined': 'off',
1517
'no-throw-literal': 'off',
@@ -20,7 +22,6 @@ module.exports = {
2022
'@typescript-eslint/no-empty-interface': 'off',
2123
'@typescript-eslint/no-extraneous-class': 'off',
2224
'@typescript-eslint/no-floating-promises': 'off',
23-
'@typescript-eslint/no-unused-vars': [2, { args: 'none' }],
2425
'@typescript-eslint/require-await': 'off',
2526
'@typescript-eslint/restrict-template-expressions': 'off',
2627
'@typescript-eslint/promise-function-async': 'off',
@@ -33,8 +34,5 @@ module.exports = {
3334
'no-async-promise-executor': 'off',
3435
'@typescript-eslint/no-dynamic-delete': 'off'
3536
}
36-
}],
37-
env: {
38-
node: true
39-
}
37+
}]
4038
}

0 commit comments

Comments
 (0)