This commit is contained in:
许晓东
2021-08-31 00:28:52 +08:00
parent 5b36126ea4
commit 7bfe1b35bd
18 changed files with 13510 additions and 0 deletions

14
ui/.eslintrc.js Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
root: true,
env: {
node: true,
},
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
parserOptions: {
parser: "babel-eslint",
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
},
};