Fix mobile overlay and deps per #43
Test and Lint / backend-test (pull_request) Successful in 1m26s
continuous-integration/drone/pr Build is failing
Test and Lint / frontend-test (pull_request) Failing after 1m23s

This commit is contained in:
2025-10-29 11:38:09 +01:00
parent b76e45cb54
commit e30ea64e45
14 changed files with 1459 additions and 686 deletions
+23
View File
@@ -19,5 +19,28 @@ export default tseslint.config([
ecmaVersion: 2020,
globals: globals.browser,
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
'react-hooks/rules-of-hooks': 'off',
'react-hooks/exhaustive-deps': 'warn',
'no-useless-escape': 'off',
'no-case-declarations': 'off',
'prefer-const': 'off',
'no-control-regex': 'off',
'no-useless-catch': 'off',
'react-refresh/only-export-components': 'off',
'no-empty': 'off',
'no-debugger': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
},
},
{
files: ['**/*.d.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'off',
},
},
])