book-web/.eslintrc.cjs

20 lines
384 B
JavaScript
Raw Permalink Normal View History

2024-07-16 10:02:54 +08:00
module.exports = {
root: true,
env: {
node: true
},
extends: ['plugin:vue/vue3-recommended', 'plugin:prettier/recommended'],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 2022,
ecmaFeatures: {
jsx: true
}
},
rules: {
curly: 'error', // 控制语句需要大括号
'vue/multi-word-component-names': 'off'
}
}