代码拉取完成,页面将自动刷新
{
"root": true,
"env": {
"node": true,
// 在Vue3的setup中运行 提供defineProps等编译器宏函数
"vue/setup-compiler-macros": true
},
"extends": ["plugin:vue/vue3-recommended", "eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "vue-eslint-parser",
"plugins": ["vue", "html"],
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaVersion": 2020
},
"rules": {
"no-undef": "off",
"no-console": "off",
// 检测html标签自闭和
"vue/html-self-closing": "off",
// html中每行最多属性数目n
"vue/max-attributes-per-line": "off",
// 未使用的变量 ts中不需要
// "no-unused-vars": "warn",
// let -> const ts中不需要
// "prefer-const": "warn",
// 建议使用单引号
"quotes": ["warn", "single"],
// 多余的空行
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 1 }],
// new完之后必须赋值
"no-new": "error",
// 不允许new Object
"no-new-object": "error",
// 组件必须多名称 Todo -> TodoItem
"vue/multi-word-component-names": "off",
// props是否必需默认值
"vue/require-default-prop": "off",
// 缩进
"indent": ["warn", 2, { "SwitchCase": 1 }],
// 函数前空格
"space-before-function-paren": 0,
// 末尾逗号
"comma-dangle": [
"warn",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
],
// 元素内容需否要换行
"vue/singleline-html-element-content-newline": ["off"],
// 模板字符串插值首位不能有空格
"template-curly-spacing": ["error", "never"],
// 不允许行尾出现空格
"no-trailing-spaces": "error",
// 允许ts非空断言
"@typescript-eslint/no-non-null-assertion": "off",
// 允许使用any类型
"@typescript-eslint/no-explicit-any": "off",
// 允许v-html
"vue/no-v-html": "off",
// 允许空函数
"@typescript-eslint/no-empty-function": "off",
// 无禁止类型
"@typescript-eslint/ban-types": "off"
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。