1 Star 0 Fork 0

死牛胖子/GetanAdminVue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 4.48 KB
一键复制 编辑 原始数据 按行查看 历史
死牛胖子 提交于 2024-06-11 15:21 . 按钮按钮组二次封装
// @ts-check
const { defineConfig } = require("eslint-define-config")
module.exports = defineConfig({
root: true,
env: {
browser: true,
node: true,
es6: true
},
parser: "vue-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
ecmaVersion: 2020,
sourceType: "module",
jsxPragma: "React",
ecmaFeatures: {
jsx: true
}
},
extends: ["plugin:vue/vue3-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
rules: {
// eslint (http://eslint.cn/docs/rules)
// 要求使用 let 或 const 而不是 var
"no-var": "error",
// 不允许多个空行
"no-multiple-empty-lines": ["error", { max: 1 }],
// 使用 let 关键字声明但在初始分配后从未重新分配的变量,要求使用 const
"prefer-const": "off",
// 禁止在 函数/类/变量 定义之前使用它们
"no-use-before-define": "off",
"no-unused-vars": [
"error",
// we are only using this rule to check for unused arguments since TS
// catches unused variables but not args.
{ varsIgnorePattern: ".*", args: "none" }
],
"space-before-function-paren": "off",
// typeScript (https://typescript-eslint.io/rules)
// 禁止定义未使用的变量
"@typescript-eslint/no-unused-vars": "error", //["error", { varsIgnorePattern: ".*", args: "none" }],
// 禁止空函数
"@typescript-eslint/no-empty-function": "off",
// 禁止使用 @ts-ignore
"@typescript-eslint/prefer-ts-expect-error": "off",
// 可以轻松推断的显式类型可能会增加不必要的冗长
"@typescript-eslint/no-inferrable-types": "off",
// 禁止使用自定义 TypeScript 模块和命名空间
"@typescript-eslint/no-namespace": "off",
// 禁止使用 any 类型
"@typescript-eslint/no-explicit-any": "off",
// 禁止 @ts-<directive> 使用注释或要求在指令后进行描述
"@typescript-eslint/ban-ts-comment": "off",
// 禁止使用特定类型
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-ignore": "off",
// 允许使用 require() 函数导入模块
"@typescript-eslint/no-var-requires": "off",
// 不允许使用后缀运算符的非空断言(!)
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
// vue (https://eslint.vuejs.org/rules)
// 防止<script setup>使用的变量<template>被标记为未使用,此规则仅在启用该 no-unused-vars 规则时有效
"vue/script-setup-uses-vars": "error",
// 强制执行 v-slot 指令样式
"vue/v-slot-style": "error",
// 不允许改变组件 prop
"vue/no-mutating-props": "error",
// 为自定义事件名称强制使用特定大小写
"vue/custom-event-name-casing": "off",
// 在标签的右括号之前要求或禁止换行
"vue/html-closing-bracket-newline": "off",
// 对模板中的自定义组件强制执行属性命名样式:my-prop="prop"
"vue/attribute-hyphenation": "off",
// vue api使用顺序,强制执行属性顺序
"vue/attributes-order": "off",
// 禁止使用 v-html
"vue/no-v-html": "off",
// 此规则要求为每个 prop 为必填时,必须提供默认值
"vue/require-default-prop": "off",
// 要求组件名称始终为 “-” 链接的单词
"vue/multi-word-component-names": "off",
// 禁止解构 props 传递给 setup
"vue/no-setup-props-destructure": "off",
"vue/one-component-per-file": "off",
"vue/max-attributes-per-line": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/valid-define-props": "off",
"vue/valid-v-for": "off",
"vue/html-self-closing": [
"error",
{
html: {
void: "always",
normal: "never",
component: "always"
},
svg: "always",
math: "always"
}
]
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/gongm_24/getan-admin-vue.git
git@gitee.com:gongm_24/getan-admin-vue.git
gongm_24
getan-admin-vue
GetanAdminVue
master

搜索帮助