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: {
|
2022-02-23 11:33:55 +05:30
|
|
|
node: true,
|
2018-06-01 18:05:51 +05:30
|
|
|
},
|
2022-01-24 12:49:27 +05:30
|
|
|
|
2018-06-01 18:05:51 +05:30
|
|
|
rules: {
|
2022-02-23 11:33:55 +05:30
|
|
|
'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',
|
2023-01-31 13:36:03 +05:30
|
|
|
'vue/no-mutating-props': 'off',
|
2022-02-23 11:33:55 +05:30
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
'vue/no-useless-template-attributes': 'off',
|
2019-12-12 23:07:43 +05:30
|
|
|
},
|
2022-01-24 12:49:27 +05:30
|
|
|
|
2019-12-12 23:07:43 +05:30
|
|
|
parserOptions: {
|
2022-02-23 11:33:55 +05:30
|
|
|
parser: '@typescript-eslint/parser',
|
2022-01-24 12:49:27 +05:30
|
|
|
},
|
|
|
|
|
2022-02-23 11:33:55 +05:30
|
|
|
extends: ['plugin:vue/vue3-essential', '@vue/typescript'],
|
2019-12-12 23:07:43 +05:30
|
|
|
};
|