Skip to content

Commit eca983e

Browse files
committed
Use underscore for unused variables
1 parent e372acf commit eca983e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
},
1414
rules: {
1515
'semi': ['error', 'never'],
16+
'@typescript-eslint/no-unused-vars': ['warn', { 'argsIgnorePattern': '^_', 'varsIgnorePattern': '^_' }],
1617
},
1718
ignorePatterns: [ "dist/*" ],
1819
}

0 commit comments

Comments
 (0)