Skip to content

Commit

Permalink
lint: remove no-unused-vars from our lint rules
Browse files Browse the repository at this point in the history
Unused vars are sometimes useful to be able to have!
  • Loading branch information
karlvr committed Sep 15, 2024
1 parent 79073bd commit 2507996
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ module.exports = {
'@typescript-eslint/indent': ['warn', 'tab'],
'key-spacing': 'warn',
'keyword-spacing': 'warn',
'@typescript-eslint/member-delimiter-style': ['warn', { 'multiline': { 'delimiter': 'none' } } ],
'@typescript-eslint/member-delimiter-style': ['warn', { 'multiline': { 'delimiter': 'none' } }],
'@typescript-eslint/member-ordering': 'warn',
'@typescript-eslint/no-empty-interface': 'off',
'no-multi-spaces': 'warn',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': ['error', 'nofunc'],
'@typescript-eslint/no-var-requires': 'off',
'no-whitespace-before-property': 'warn',
Expand Down

0 comments on commit 2507996

Please sign in to comment.