poster-design/.eslintrc.js

24 lines
513 B
JavaScript
Raw Normal View History

2023-07-18 07:03:15 +00:00
module.exports = {
extends: [
'alloy',
'alloy/vue',
// 'alloy/typescript',
'@vue/typescript',
],
env: {
2023-07-20 10:53:28 +00:00
// 你的环境变量
2023-07-18 07:03:15 +00:00
},
2023-07-20 10:53:28 +00:00
globals: {},
2023-07-18 07:03:15 +00:00
rules: {
// 自定义你的规则
'vue/component-tags-order': ['off'],
'vue/no-multiple-template-root': ['off'],
// 'no-undef': 'off', // 禁止使用未定义的变量会把TS声明视为变量暂时关闭
},
parserOptions: {
ecmaFeatures: {
legacyDecorators: true, // 配置允许注解
},
},
}