Skip to content

Commit

Permalink
chore: @typescript-eslint/no-unused-vars 由error改为 warn
Browse files Browse the repository at this point in the history
  • Loading branch information
yuntian001 committed Jul 18, 2023
1 parent 1d23622 commit aee0cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = {
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-vars': ['error', { args: 'after-used' }],
'@typescript-eslint/no-unused-vars': ['warn', { args: 'after-used' }],
'no-undef': 'off', // ts(2304)
'@typescript-eslint/naming-convention': [
'error',
Expand Down

0 comments on commit aee0cf8

Please sign in to comment.