From d12ef03342d624188841bb801ef44e0c6be522bc Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Thu, 4 Aug 2022 13:43:44 +0800 Subject: [PATCH] =?UTF-8?q?chore(eslint):=20=E6=B7=BB=E5=8A=A0eslint?= =?UTF-8?q?=E5=B9=B6=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintignore | 15 +++++++++++++++ .eslintrc.js | 36 ++++++++++++++++++++++++++++++++++++ README.md | 16 ++++++++-------- index.html | 2 +- package.json | 9 +++++++++ src/App.vue | 9 +++------ 6 files changed, 72 insertions(+), 15 deletions(-) create mode 100644 .eslintignore create mode 100644 .eslintrc.js diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..a5a8c50 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,15 @@ +*.sh +node_modules +lib +*.md +*.woff +*.ttf +.vscode +.idea +/dist/ +/public +/docs +.vscode +.local +!.env-config.ts +components.d.ts diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..29c0d30 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,36 @@ +module.exports = { + root: true, + // 环境变量 https://eslint.org/docs/latest/user-guide/configuring/language-options#specifying-environments + env: { + browser: true, //浏览器全局变量。 + node: true, // Node.js 全局变量和 Node.js 范围。 + es2021: true, // 所有的ECMAScript6的特性除了模块 + }, + // 全局变量 + globals: {}, + // 指定解析器与解析器配置 + parser: 'vue-eslint-parser', + parserOptions: { + ecmaVersion: 12, + parser: '@typescript-eslint/parser', + sourceType: 'module' + }, + // 想要Linting规则的插件 https://eslint.org/docs/latest/user-guide/configuring/plugins + plugins: ['vue', '@typescript-eslint', 'prettier'], + // 指定扩展的配置,配置支持递归扩展,支持规则的覆盖和聚合。 + extends: [ + 'eslint:recommended', + 'plugin:vue/vue3-recommended', + 'plugin:prettier/recommended', + '@vue/eslint-config-typescript/recommended', + '@vue/eslint-config-prettier', + '@vue/typescript/recommended' + ], + rules: { + 'no-var': 'error', + // 禁止出现console + 'no-console': 'warn', + // 关闭debugger警告 + "no-debugger": "off", + } +}; \ No newline at end of file diff --git a/README.md b/README.md index 32f90a5..6cb87d4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -