update configs

This commit is contained in:
2026-04-29 21:33:56 +00:00
parent 7ea579df68
commit cf47cf6c71
3 changed files with 7 additions and 2 deletions
@@ -20,6 +20,11 @@ export default defineConfig([{
"linebreak-style": ["error", "unix"],
quotes: ["error", "double"],
semi: ["error", "always"],
"brace-style": ["error", "stroustrup", { allowSingleLine: false }]
"brace-style": ["error", "stroustrup", { allowSingleLine: false }],
"no-unused-vars": ["warn", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}]
}
}]);
+1 -1
View File
@@ -23,6 +23,6 @@
"globals": "^17.4.0"
},
"scripts": {
"lint": "npx eslint . --fix"
"lint": "DEBUG=eslint:cli-engine eslint --config dev_config/eslint.config.mjs --fix ."
}
}