代码拉取完成,页面将自动刷新
module.exports = {
root: true,
env: {
browser: true,
node: true,
es6: true,
},
parser: "vue-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
ecmaVersion: "latest",
sourceType: "module",
jsxPragma: "React",
ecmaFeatures: {
jsx: true,
},
},
extends: [
"plugin:vue/vue3-recommended",
"plugin:@typescript-eslint/recommended",
"eslint:recommended",
"prettier",
"plugin:prettier/recommended", // 一定要放在最后。因为 extends 中后引入的规则会覆盖前面的规则。
],
rules: {
// @typescript-eslint
"@typescript-eslint/explicit-function-return-type": "off", // 需要函数和类方法的显式返回类型
"@typescript-eslint/no-explicit-any": "off", // 禁止使用该 any 类型
"@typescript-eslint/no-var-requires": "off", // 不允许使用 require 语句,除了在 import 语句中
"@typescript-eslint/no-empty-function": "off", // 禁止空函数
"@typescript-eslint/no-use-before-define": "off", // 在定义之前禁止使用变量
"@typescript-eslint/ban-ts-comment": "off", // 禁止 @ts-<directive> 使用评论或在指令后要求描述
"@typescript-eslint/ban-types": "off", // 禁止使用特定类型
"@typescript-eslint/no-non-null-assertion": "off", // '!'不允许使用后缀运算符的非空断言
"@typescript-eslint/explicit-module-boundary-types": "off", // 需要导出函数和类的公共类方法的显式返回和参数类型
"@typescript-eslint/no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
], // 禁止未使用的变量
// vue
"vue/custom-event-name-casing": "off", // 为自定义事件名称强制使用特定大小写
"vue/attributes-order": "off", // 强制执行属性顺序
"vue/one-component-per-file": "off", // 强制每个组件都应该在自己的文件中
"vue/html-closing-bracket-newline": "off", // 在标签的右括号之前要求或禁止换行
"vue/multiline-html-element-content-newline": "off", // 在多行元素的内容之前和之后需要换行符
"vue/singleline-html-element-content-newline": "off", // 在单行元素的内容之前和之后需要换行符
"vue/attribute-hyphenation": "off", // 对模板中的自定义组件强制执行属性命名样式
"vue/require-default-prop": "off", // 需要 props 的默认值
"vue/html-indent": ["error", 2], // 在<template>中强制一致缩进
"vue/html-self-closing": "off", // 执行自闭合的风格
"vue/max-attributes-per-line": "off",
// "vue/max-attributes-per-line": [
// "error",
// {
// ignore: ["svg"],
// },
// ], // 强制每行属性的最大数量
"vue/multi-word-component-names": "off", // 是否开启组件命名规则校验(强制多个单词以驼峰或'-'链接的命名规则)
// ESLint
"no-use-before-define": "off", // 禁止在变量定义之前使用它们
"space-before-function-paren": "off", // 强制在 function的左括号之前使用一致的空格
},
// overrides: [ // 若要开启组件命名规则校验,建议选这种方式
// {
// files: ['src/views/index.vue', 'src/views/**/index.vue'], // 匹配 views 和任意多级路径中的 index.vue
// rules: {
// 'vue/multi-word-component-names': 'off' // 给上面匹配的文件指定规则——关闭命名规则校验
// }
// }
// ]
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。