diff --git a/eslint.config.mjs b/eslint.config.mjs index fd3004d..069699c 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -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', } } ];