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: {
|
2019-12-12 23:07:43 +05:30
|
|
|
node: true
|
2018-06-01 18:05:51 +05:30
|
|
|
},
|
2022-01-24 12:49:27 +05:30
|
|
|
|
2021-11-02 19:04:14 +05:30
|
|
|
extends: ["plugin:vue/essential"],
|
2022-01-24 12:49:27 +05:30
|
|
|
|
2018-06-01 18:05:51 +05:30
|
|
|
rules: {
|
2019-12-12 23:07:43 +05:30
|
|
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
2021-11-02 19:04:14 +05:30
|
|
|
"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",
|
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-01-24 12:49:27 +05:30
|
|
|
parser: '@typescript-eslint/parser'
|
|
|
|
},
|
|
|
|
|
|
|
|
'extends': [
|
|
|
|
'plugin:vue/essential',
|
|
|
|
'@vue/typescript'
|
|
|
|
]
|
2019-12-12 23:07:43 +05:30
|
|
|
};
|