bugfixes and cleanup

This commit is contained in:
Kim Ravn Hansen
2025-10-13 18:58:58 +02:00
parent 1249a34fc5
commit e12dfd0981
12 changed files with 165 additions and 114 deletions

View File

@@ -9,6 +9,9 @@ export default defineConfig([
plugins: { js }, // crlf
extends: ["js/recommended"], // crlf
languageOptions: { globals: globals.browser },
rules: {
"no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
},
},
{
// Config starts here
@@ -16,5 +19,8 @@ export default defineConfig([
plugins: { js }, // crlf
extends: ["js/recommended"], // crlf
languageOptions: { globals: globals.node },
rules: {
"no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
},
},
]);