代码拉取完成,页面将自动刷新
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended', // vue3解析 https://eslint.vuejs.org/
'plugin:@typescript-eslint/recommended',
'@vue/typescript/recommended',
// prettier推荐规则,
'prettier',
'plugin:prettier/recommended',
],
parserOptions: {
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
plugins: ['vue', '@typescript-eslint'],
rules: {
// 关闭名称校验
'vue/multi-word-component-names': 'off',
// 禁止使用 var
'no-var': 'error',
// 优先使用 interface 而不是 type
'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
// 禁止any类型,报错关闭
'@typescript-eslint/no-explicit-any': 'off',
// 需要导出函数和类的公共类方法的显式返回和参数类型,报错关闭
'@typescript-eslint/explicit-module-boundary-types': 'off',
// 禁止某些类型如String、Number,报错关闭
'@typescript-eslint/ban-types': 'off',
// 禁止未使用的变量,报错关闭
'@typescript-eslint/no-unused-vars': 0,
// vue首行缩进两字符
'vue/html-indent': [
0,
2,
{
// 属性缩进的乘数。默认为1。
attribute: 1,
// 顶级语句的缩进倍数。默认为1。
baseIndent: 1,
// 右括号缩进的乘数。默认为0。
closeBracket: 0,
// 属性是否应垂直对齐到多行情况下的第一个属性的条件。默认为true
alignAttributesVertically: true,
// 忽略节点的选择器。默认是[]
ignores: [],
},
],
'@vue/compiler-dom': 0,
'vue/no-template-shadow': 0,
// 每行最大属性数关闭
'vue/max-attributes-per-line': ['off'],
'prettier/prettier': 'error',
'no-undef': 0,
},
globals: {
defineOptions: 'readonly',
},
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。