加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc 947 Bytes
一键复制 编辑 原始数据 按行查看 历史
ujcms 提交于 2024-12-26 16:54 . v9.7.3 发布
{
"env": {
"browser": true,
"es2021": true,
"node": true,
},
"extends": ["eslint:recommended", "plugin:vue/vue3-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "./.eslintrc-auto-import.json"],
"parser": "vue-eslint-parser",
"parserOptions": {
// "extraFileExtensions": [".vue"],
// "project": ["./tsconfig.json"],
"ecmaVersion": "latest",
"sourceType": "module",
"parser": "@typescript-eslint/parser",
},
"plugins": ["vue", "@typescript-eslint"],
"rules": {
// "no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["state"] }],
// "import/prefer-default-export": "off",
// "@typescript-eslint/explicit-module-boundary-types": "off",
// // 避免使用Q_作为查询参数时报错
// "@typescript-eslint/camelcase": "off",
// 允许使用 any 类型
"@typescript-eslint/no-explicit-any": "off",
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化