From e229df97f01e3cc1416d8b42da302dc7ff5246ab Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 22 Mar 2026 14:54:04 +0100 Subject: [PATCH] chore: additional eslint rules --- eslint.config.mjs | 7 +++++++ 1 file changed, 7 insertions(+) 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', } } ];