25 lines
541 B
JavaScript
25 lines
541 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
browser: true,
|
|
es6: true,
|
|
},
|
|
extends: ["plugin:vue/essential", "eslint:recommended"],
|
|
parserOptions: {
|
|
parser: "babel-eslint",
|
|
ecmaVersion: 2020,
|
|
sourceType: "module",
|
|
},
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-unused-vars": "warn",
|
|
},
|
|
globals: {
|
|
echarts: "readonly",
|
|
editor: "readonly",
|
|
$: "readonly",
|
|
},
|
|
};
|