Skip to content

Commit

Permalink
refactor(eslintrc): rule add for double v-for and v-if to be OFF
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosct committed Dec 13, 2019
1 parent 976627b commit 5476a9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ module.exports = {
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"
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"vue/no-use-v-if-with-v-for": "off"
},
parserOptions: {
parser: "babel-eslint"
Expand Down

0 comments on commit 5476a9d

Please sign in to comment.