diff --git a/.vscode/settings.json b/.vscode/settings.json index 520790f..312327e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + "editor.showUnused": true, "editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode", "MarkdownPaste.path": "${workspaceRoot}/docs/static/img/${fileBasenameNoExtension}", diff --git a/src/http/ui/eslint.config.mjs b/src/http/ui/eslint.config.mjs index 4abb8a2..57ca4b4 100644 --- a/src/http/ui/eslint.config.mjs +++ b/src/http/ui/eslint.config.mjs @@ -33,7 +33,7 @@ export default tseslint.config( rules: { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ - "error", + "warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }, ], "@typescript-eslint/no-explicit-any": "error",