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], //在