chore: add more linting

This commit is contained in:
Mikael Klasson 2026-06-23 13:13:03 +02:00
parent 97a5233b33
commit 42613ee40f

View file

@ -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",
},