You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
411 B

5 years ago
module.exports = {
root: true,
env: {
4 years ago
node: true
5 years ago
},
4 years ago
// extends: ["plugin:vue/essential", "@vue/prettier"],//这里面的@vue/prettier去掉
extends: ["plugin:vue/essential"],
5 years ago
rules: {
4 years ago
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
},
parserOptions: {
// parser: "babel-eslint"
5 years ago
}
4 years ago
};