2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00
books/.eslintrc.js
Faris Ansari e8370aa8ab chore: Migrate project structure to Vue CLI
- Electron build using vue-cli-plugin-electron-builder
2019-12-12 23:07:43 +05:30

15 lines
335 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"
},
parserOptions: {
parser: "babel-eslint"
}
};