Unused variable updates for eslint

pull/7261/head
tugcekucukoglu 2025-02-13 13:23:48 +03:00
parent 4dd56903b0
commit 71088653a1
1 changed files with 6 additions and 0 deletions

View File

@ -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: '^_'
}
]
}
},