2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/.eslintrc.js

15 lines
335 B
JavaScript
Raw Normal View History

2018-06-01 12:35:51 +00:00
module.exports = {
root: true,
env: {
node: true
2018-06-01 12:35:51 +00:00
},
extends: ["plugin:vue/essential", "@vue/prettier"],
2018-06-01 12:35:51 +00:00
rules: {
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
},
parserOptions: {
parser: "babel-eslint"
2018-06-01 12:35:51 +00:00
}
};