mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-23 04:04:22 +08:00
16 lines
376 B
JavaScript
16 lines
376 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: ["plugin:vue/essential", "@vue/prettier"],
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
"vue/no-use-v-if-with-v-for": "off"
|
|
},
|
|
parserOptions: {
|
|
parser: "babel-eslint"
|
|
}
|
|
};
|