代码拉取完成,页面将自动刷新
module.exports = {
root: true,
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
sourceType: 'module',
},
extends: [
'plugin:vue/vue3-essential',
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/typescript/recommended',
],
env: {
browser: true,
node: true,
es6: true,
'vue/setup-compiler-macros': true, //vue3 setup
},
rules: {
quotes: ['error', 'single'], //引号配置 double双引号 single单引号 backtick模版字符串
semi: ['error', 'always'], //分号配置 always在语句结尾需要分号 never不允许分号语句的末尾
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, //debugger
'no-sparse-arrays': ['off'], //不允许稀疏数组
'no-prototype-builtins': ['off'], //防止Object.prototype直接从对象调用方法。
'vue/multi-word-component-names': ['off'], //要求组件名称始终为多个单词
'vue/no-v-html': ['off'], //不允许使用v-html 防止XSS攻击
'no-empty-function': ['error', { allow: ['arrowFunctions'] }], //空函数校验
'no-unused-vars': 'off', //去除函数未使用参数报错
'vue/max-attributes-per-line': [
//强制执行每行的最大属性数
'warn',
{
singleline: 5,
multiline: {
max: 1,
},
},
],
'vue/singleline-html-element-content-newline': ['off'], //在单行元素的内容前后需要换行符
'vue/multiline-html-element-content-newline': ['off'], //在多行元素的内容前后需要换行符
//https://eslint.vuejs.org/rules/script-indent.html
'vue/script-indent': [
//缩进
'error',
2,
{
// baseIndent: 1, //The multiplier of indentation for top-level statements.
switchCase: 1, // The multiplier of indentation for case/default clauses.
},
],
//缩进 https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/indent.md
'@typescript-eslint/indent': [2, 2, { SwitchCase: 1 }],
'@typescript-eslint/no-explicit-any': ['off'],//去除使用any类型警告
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。