From 43e194e8e967fd4ae955c1ed86cda0f8f37ccb1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=9A=E5=90=8D=E7=A8=8B=E5=BA=8F=E5=91=98?= <1968115437@qq.com> Date: Mon, 13 Mar 2023 17:51:14 +0800 Subject: [PATCH] =?UTF-8?q?ci=EF=BC=9A=E5=8E=BB=E6=8E=89=E6=97=A0=E5=A4=AA?= =?UTF-8?q?=E5=A4=A7=E6=84=8F=E4=B9=89=E6=A0=BC=E5=BC=8F=E5=8C=96=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E8=9E=8D=E5=85=A5=E8=BF=9Bvscode=E4=B8=AD=EF=BC=8C?= =?UTF-8?q?=E5=87=8F=E5=B0=91=E6=A0=B9=E7=9B=AE=E5=BD=95=E6=96=87=E4=BB=B6?= =?UTF-8?q?=EF=BC=8C=E4=BC=98=E5=8C=96=E9=83=A8=E5=88=86=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintignore | 20 ---- .eslintrc.cjs | 72 +++++++++++++++ .eslintrc.js | 102 --------------------- .gitignore | 38 ++------ .prettierrc.js | 37 -------- .prettierignore => .vscode/.prettierignore | 13 +-- .vscode/extensions.json | 8 +- .vscode/settings.json | 32 +++++-- README.md | 67 +++++++++++--- package.json | 10 +- tsconfig.json | 65 +++++++++---- tsconfig.node.json | 9 -- 12 files changed, 213 insertions(+), 260 deletions(-) delete mode 100644 .eslintignore create mode 100644 .eslintrc.cjs delete mode 100644 .eslintrc.js delete mode 100644 .prettierrc.js rename .prettierignore => .vscode/.prettierignore (67%) delete mode 100644 tsconfig.node.json diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 98768fc..0000000 --- a/.eslintignore +++ /dev/null @@ -1,20 +0,0 @@ -# 忽略目录 -/dist -/build -/tests -/node_modules -/public -/src/public -/src/static -/src/manifest.json -/vite.config.ts -/unocss.config.js - -# node 覆盖率文件 -coverage/ - -# 忽略文件 -**/*-min.js -**/*.min.js -**/*-min.css -**/*.min.css \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 0000000..ee55f0f --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,72 @@ +// 参考:https://eslint.bootcss.com/docs/rules/ +// 参考:https://blog.csdn.net/x550392236/article/details/89497202 +// 参考:https://blog.csdn.net/brokenkay/article/details/111106266 + +module.exports = { + root: true, + /**环境提供预定义的全局变量 */ + env: { + /**Node.js全局变量和Node.js范围 */ + node: true, + /**浏览器全局变量 */ + browser: true, + }, + /**定义ESLint的解析器 */ + parser: 'vue-eslint-parser', + parserOptions: { + ecmaVersion: 'latest', + sourceType: 'module', + parser: '@typescript-eslint/parser', + }, + /**定义文件继承的子规范 */ + extends: ['eslint:recommended', 'plugin:vue/vue3-essential', 'plugin:@typescript-eslint/recommended'], + plugins: ['vue', '@typescript-eslint'], + rules: { + 'no-var': 'error', //要求使用 let 或 const 而不是 var + camelcase: 'error', // 双峰驼命名格式 + indent: ['error', 4, { SwitchCase: 1 }], //代码缩进2个空格 + semi: ['error', 'always'], //行尾需要有分号 + quotes: ['error', 'single'], //强制使用一致的反勾号、双引号或单引号 + 'linebreak-style': ['error', 'unix'], //强制使用一致的换行风格,"unix":\n 表示 LF , "windows":\r\n 表示 CRLF + eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等 + 'no-unused-vars': 'off', + '@typescript-eslint/no-unused-vars': [ + 'warn', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], //不允许使用未使用的变量 + '@typescript-eslint/no-explicit-any': 'off', //不允许任何类型 + '@typescript-eslint/no-empty-function': 'off', //不允许空函数 + 'vue/html-indent': ['error', 4], //在