mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
24 lines
560 B
JavaScript
24 lines
560 B
JavaScript
module.exports = {
|
|
root: true,
|
|
|
|
env: {
|
|
node: true,
|
|
},
|
|
|
|
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/no-mutating-props': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-useless-template-attributes': 'off',
|
|
},
|
|
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
},
|
|
|
|
extends: ['plugin:vue/vue3-essential', '@vue/typescript'],
|
|
};
|