mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
e8370aa8ab
- Electron build using vue-cli-plugin-electron-builder
15 lines
335 B
JavaScript
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"
|
|
}
|
|
};
|