Skip to content

Commit 7b72526

Browse files
Merge pull request #295 from mxenabled/aw/fix_vulnerabilities
fixed 31 high severity vulnerabilities
2 parents 69b913e + c7d5962 commit 7b72526

10 files changed

Lines changed: 1753 additions & 2725 deletions

File tree

.eslintrc.cjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ module.exports = {
1515
plugins: ['react-refresh'],
1616
rules: {
1717
'@typescript-eslint/no-explicit-any': 'error',
18+
'@typescript-eslint/no-unused-vars': [
19+
'error',
20+
{
21+
argsIgnorePattern: '^_',
22+
varsIgnorePattern: '^_',
23+
caughtErrorsIgnorePattern: '^_',
24+
},
25+
],
1826
//add this back in
1927
// 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
2028
'no-restricted-imports': [

0 commit comments

Comments
 (0)