From 728d0a82de98b52e83b1f42e97a2267ba988d373 Mon Sep 17 00:00:00 2001 From: wf <2547096351@qq.com> Date: Wed, 24 Apr 2024 13:02:25 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20vite=20server=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.cjs | 150 ++++++------ .prettierrc.cjs | 82 +++---- .../Header/components/Breadcrumb/index.vue | 2 + vite.config.ts | 215 +++++++++--------- 4 files changed, 228 insertions(+), 221 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index bc6df86..e1fb68b 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,75 +1,75 @@ -module.exports = { - // 运行环境 - env: { - browser: true, - es2021: true, - node: true // 配置后便会启用浏览器和 Node.js 环境,这两个环境中的一些全局变量(如 window 、 global 等)会同时启用。 - }, - // 指定如何解析语法 解析 .vue 文件 - parser: "vue-eslint-parser", - // 解析器选项 - parserOptions: { - ecmaVersion: "latest", // 可以配置 ES + 数字(如 ES6)或者 ES + 年份 (如 ES2015),也可以直接配置为 latest ,启用最新的 ES 语法 - parser: "@typescript-eslint/parser", // ts解析,将ts转换为estree格式,在eslint下通过Espree进行检查 - sourceType: "module" // 默认为 script ,如果使用 ES Module 则应设置为 module - }, - - // 继承配置 - extends: [ - "./.eslintrc-auto-import.json", // 与vite.config.ts中的filepath路径一致 - "plugin:vue/vue3-recommended", - "plugin:@typescript-eslint/recommended", - "prettier", - "plugin:prettier/recommended" // prettier配置要写在eslint配置后面 - ], - // ESLint插件系统 - // 添加插件后只是拓展了 ESLint 本身的规则集,但 ESLint 默认并没有开启这些规则的校验,需要在rules进行配置要开启或者调整这些规则 - plugins: [ - "@typescript-eslint", // 拓展一些关于 TS 代码的规则 - "vue", - // 2. 加入 prettier 的 eslint 插件 - "prettier" - ], - /** - * key 为规则名,value 配置内容,数组第一项为规则的ID ,第二项为规则的配置 - * "off" 或 0 ==> 关闭规则 - * "warn" 或 1 ==> 打开的规则作为警告(不影响代码执行) - * "error" 或 2 ==> 规则作为一个错误(代码不能执行,界面报错) - */ - rules: { - // 配置: - // eslint (http://eslint.cn/docs/rules) - "no-var": "error", // 要求使用 let 或 const 而不是 var - "no-multiple-empty-lines": ["error", { max: 1 }], // 不允许多个空行 - "prefer-const": "off", // 使用 let 关键字声明但在初始分配后从未重新分配的变量,要求使用 const - "no-use-before-define": "off", // 禁止在 函数/类/变量 定义之前使用它们 - - // 3. 注意要加上这一句,开启 prettier 自动修复的功能 - "prettier/prettier": "error", - - // typeScript (https://typescript-eslint.io/rules) - "@typescript-eslint/no-unused-vars": "error", // 禁止定义未使用的变量 - "@typescript-eslint/no-empty-function": "error", // 禁止空函数 - "@typescript-eslint/prefer-ts-expect-error": "error", // 禁止使用 @ts-ignore - "@typescript-eslint/ban-ts-comment": "error", // 禁止 @ts- 使用注释或要求在指令后进行描述 - "@typescript-eslint/no-inferrable-types": "off", // 可以轻松推断的显式类型可能会增加不必要的冗长 - "@typescript-eslint/no-namespace": "off", // 禁止使用自定义 TypeScript 模块和命名空间 - "@typescript-eslint/no-explicit-any": "off", // 禁止使用 any 类型 - "@typescript-eslint/ban-types": "off", // 禁止使用特定类型 - "@typescript-eslint/no-var-requires": "off", // 允许使用 require() 函数导入模块 - "@typescript-eslint/no-non-null-assertion": "off", // 不允许使用后缀运算符的非空断言(!) - - // vue (https://eslint.vuejs.org/rules) - "vue/script-setup-uses-vars": "error", // 防止