chore: additional eslint rules

This commit is contained in:
Administrator 2026-03-22 14:54:04 +01:00
parent 9a32a554e4
commit e229df97f0

View File

@ -69,6 +69,13 @@ export default [
'no-implied-eval': 'error',
'no-new-func': 'error',
'no-throw-literal': 'warn',
'no-self-assign': 'error',
'no-self-compare': 'error',
'no-loss-of-precision': 'error',
'no-dupe-keys': 'error',
'no-unsafe-finally': 'error',
'no-unmodified-loop-condition': 'warn',
'no-template-curly-in-string': 'warn',
}
}
];