From 42613ee40fef952f1125b7a5a89ce79c8b11fea3 Mon Sep 17 00:00:00 2001 From: Mikael Klasson <43577743+emklasson@users.noreply.github.com> Date: Tue, 23 Jun 2026 13:13:03 +0200 Subject: [PATCH] chore: add more linting --- eslint.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 5a07783..948c71b 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -48,9 +48,9 @@ export default defineConfig([globalIgnores(["**/node_modules/", "**/main.js"]), "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-empty-function": "off", - "@typescript-eslint/no-unsafe-member-access": "off", - "@typescript-eslint/no-unsafe-assignment": "off", - "@typescript-eslint/no-unsafe-argument": "off", + "@typescript-eslint/no-unsafe-member-access": "warn", + "@typescript-eslint/no-unsafe-assignment": "warn", + "@typescript-eslint/no-unsafe-argument": "warn", "@typescript-eslint/no-floating-promises": "error", "no-prototype-builtins": "error", },