2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/.eslintrc.js

15 lines
335 B
JavaScript
Raw Normal View History

2018-06-01 18:05:51 +05:30
module.exports = {
root: true,
env: {
node: true
2018-06-01 18:05:51 +05:30
},
extends: ["plugin:vue/essential", "@vue/prettier"],
2018-06-01 18:05:51 +05:30
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 18:05:51 +05:30
}
};