mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2025-12-30 11:02:25 +00:00
37 lines
927 B
JavaScript
37 lines
927 B
JavaScript
/* eslint-env node */
|
||
require('@rushstack/eslint-patch/modern-module-resolution')
|
||
|
||
module.exports = {
|
||
root: true,
|
||
extends: [
|
||
'plugin:vue/vue3-essential',
|
||
'eslint:recommended',
|
||
'@vue/eslint-config-prettier/skip-formatting'
|
||
],
|
||
parserOptions: {
|
||
ecmaVersion: 'latest',
|
||
ecmaFeatures: {
|
||
jsx: true
|
||
}
|
||
},
|
||
rules: {
|
||
'prettier/prettier': [
|
||
'warn',
|
||
{
|
||
singleQuote: true, // 单引号
|
||
semi: false, // 无分号
|
||
printWidth: 100, // 每行宽度至多100字符
|
||
trailingComma: 'none', // 不加对象|数组最后逗号
|
||
endOfLine: 'auto' // 换行符号不限制(win mac 不一致)
|
||
}
|
||
],
|
||
'vue/multi-word-component-names': [
|
||
'warn',
|
||
{
|
||
ignores: ['index'] // vue组件名称多单词组成(忽略index.vue)
|
||
}
|
||
],
|
||
'vue/jsx-uses-vars': 'error' // 确保 JSX 中使用的变量被正确识别
|
||
}
|
||
}
|