mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 19:42:08 +08:00
16 lines
363 B
JavaScript
16 lines
363 B
JavaScript
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" ? "error" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
|
|
}
|
|
};
|