Skip to content

Commit

Permalink
修改eslint配置
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoyoubo committed May 5, 2020
1 parent 4fbb5fd commit 2bc0088
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ module.exports = {
args: "none"
}
],
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
// "no-console": process.env.NODE_ENV === "production" ? "error" : "off",
// "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"no-console": "off",
"no-debugger": "off",
"vue/no-v-html": "off"
}
};

0 comments on commit 2bc0088

Please sign in to comment.