2020-06-24 13:54:15 +08:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true
|
|
|
|
},
|
2021-03-04 11:03:51 +08:00
|
|
|
extends: ["plugin:vue/essential"],
|
2020-06-24 13:54:15 +08:00
|
|
|
parserOptions: {
|
|
|
|
parser: "babel-eslint"
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
2021-03-04 11:03:51 +08:00
|
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
|
|
"max-len": [0, { code: 300 }],
|
|
|
|
"no-cycle": 0
|
2020-06-24 13:54:15 +08:00
|
|
|
}
|
|
|
|
};
|