big update

This commit is contained in:
Iliyan Angelov
2025-12-12 01:48:04 +02:00
parent d4c6ae8aec
commit 7acf05e186
249 changed files with 3395 additions and 10087 deletions

View File

@@ -14,5 +14,20 @@ module.exports = {
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
'@typescript-eslint/no-explicit-any': [
'error',
{
ignoreRestArgs: true,
},
],
'react-hooks/exhaustive-deps': 'warn',
},
}