保存进度!

This commit is contained in:
2023-07-11 10:49:14 +08:00
parent daa675b079
commit dbc5066aed
4 changed files with 105 additions and 320 deletions

View File

@@ -73,7 +73,7 @@ module.exports = {
"plugin:vue/vue3-essential",
"plugin:vue/recommended",
"eslint:recommended",
"standard-with-typescript",
// "standard-with-typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
@@ -144,7 +144,7 @@ module.exports = {
plugins: ["@typescript-eslint",],
extends: [
"eslint:recommended",
"standard-with-typescript",
// "standard-with-typescript",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
@@ -153,6 +153,7 @@ module.exports = {
"space-in-parens": ["error", "always", { exceptions: ["{}", "[]", "()", "empty",], },],
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/indent": ["error", 4,],
"@typescript-eslint/no-extra-semi": "off",
"@typescript-eslint/no-inferrable-types": "off",