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

28 lines
568 B
JavaScript
Raw Normal View History

2018-06-01 18:05:51 +05:30
module.exports = {
root: true,
2022-01-24 12:49:27 +05:30
2018-06-01 18:05:51 +05:30
env: {
node: true
2018-06-01 18:05:51 +05:30
},
2022-01-24 12:49:27 +05:30
extends: ["plugin:vue/essential"],
2022-01-24 12:49:27 +05:30
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",
"arrow-body-style": "off",
"prefer-arrow-callback": "off",
2021-11-21 19:08:04 +05:30
"vue/multi-word-component-names": "off",
"vue/no-useless-template-attributes": "off",
},
2022-01-24 12:49:27 +05:30
parserOptions: {
2022-01-24 12:49:27 +05:30
parser: '@typescript-eslint/parser'
},
'extends': [
'plugin:vue/essential',
'@vue/typescript'
]
};