2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/.eslintrc.js
18alantom 864d07fd1b chore: bump linters and parsers and electron's friends
- prettier and eslint have to be configured
- few rules have been switched off
- deps bumped in this did not require major changes
2021-11-02 20:21:20 +05:30

18 lines
438 B
JavaScript

module.exports = {
root: true,
env: {
node: true
},
extends: ["plugin:vue/essential"],
rules: {
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"arrow-body-style": "off",
"prefer-arrow-callback": "off",
"vue/multi-word-component-names": "off"
},
parserOptions: {
parser: "@babel/eslint-parser"
}
};