15 lines
469 B
JavaScript
15 lines
469 B
JavaScript
|
|
// Temporary ESLint overrides to suppress non-critical warnings during development
|
||
|
|
module.exports = {
|
||
|
|
extends: ['./.eslintrc.js'],
|
||
|
|
rules: {
|
||
|
|
'@typescript-eslint/no-unused-vars': ['warn', {
|
||
|
|
argsIgnorePattern: '^_',
|
||
|
|
varsIgnorePattern: '^_',
|
||
|
|
ignoreRestSiblings: true
|
||
|
|
}],
|
||
|
|
'@typescript-eslint/no-use-before-define': 'warn',
|
||
|
|
'no-promise-executor-return': 'warn',
|
||
|
|
'react-hooks/rules-of-hooks': 'error', // Keep this as error
|
||
|
|
},
|
||
|
|
};
|