代码拉取完成,页面将自动刷新
import vueParser from "vue-eslint-parser"; // 导入 vue-eslint-parser 作为对象
import typescriptParser from "@typescript-eslint/parser"; // 导入 TypeScript 解析器
import vue from "eslint-plugin-vue";
import typescript from "@typescript-eslint/eslint-plugin";
import prettier from "eslint-plugin-prettier";
export default [
// 忽略文件
{
ignores: [
".DS_Store",
"node_modules",
"dist",
"dist-ssr",
"*.local",
".npmrc",
], // 原 .eslintignore 文件的内容
},
{
files: ["**/*.ts", "**/*.js", "**/*.jsx", "**/*.tsx", "**/*.vue"], // 作用范围
languageOptions: {
ecmaVersion: 2020,
sourceType: "module",
parser: vueParser, // 直接使用 vue-eslint-parser 对象
parserOptions: {
parser: typescriptParser, // 使用 TypeScript 解析器对象
ecmaVersion: 2020,
sourceType: "module",
jsxPragma: "React",
ecmaFeatures: {
jsx: true,
tsx: true,
},
},
},
plugins: {
vue, // 使用 vue 插件
"@typescript-eslint": typescript, // 使用 TypeScript 插件
prettier, // 使用 Prettier 插件
},
rules: {
// TypeScript 规则
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-debugger": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
"no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
// Vue 规则
"vue/no-v-html": "off",
"vue/require-default-prop": "off",
"vue/require-explicit-emits": "off",
"vue/multi-word-component-names": "off",
"vue/html-self-closing": [
"error",
{
html: {
void: "always",
normal: "never",
component: "never",
},
svg: "always",
math: "always",
},
],
// Prettier 规则
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
},
},
];
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。