Skip to content

Commit

Permalink
Unused variable updates for eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Feb 13, 2025
1 parent 4dd5690 commit 7108865
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ export default [
{ blankLine: 'always', prev: 'block-like', next: '*' },
{ blankLine: 'always', prev: '*', next: 'block-like' },
{ blankLine: 'always', prev: ['import'], next: ['const', 'let', 'var'] }
],
'no-unused-vars': [
'warn',
{
varsIgnorePattern: '^_'
}
]
}
},
Expand Down

0 comments on commit 7108865

Please sign in to comment.