vue3使用Eslint
rules: {'prettier/prettier':["warn",{singleQuote: true,//单引号semi: false,//无分号printwidth: 80,//每行宽度至多80字符trailingComma: 'none',//不加对象|数组最后逗号endofLine: 'auto'//换行符号不限制(win mac 不一致)}],'vue/multi-word-component-names': ['warn',{ignores: ['index']//vue组件名称多单词组成(忽略index.vue)}],'vue/no-setup-props-destructure': ['off'],//关闭 props 解构的验//号添加未定义变量错误提示,create-vue@3.6.3 关闭,这里加上是为了支持下一个章节演示。'no-undef':'error'
}