From 8de364c82fd45e72e4749f83a2efd69a2ab8340d 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: Wed, 8 Mar 2023 10:02:46 +0800 Subject: [PATCH] =?UTF-8?q?ci:=E4=BF=AE=E6=94=B9.prettierrc.cjs=E3=80=81pa?= =?UTF-8?q?ckage.json=E5=B9=B6=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintignore | 38 ++-- .eslintrc.js | 184 +++++++++-------- .prettierignore | 36 ++-- .prettierrc.js | 73 ++++--- .vscode/extensions.json | 13 +- .vscode/settings.json | 14 +- README.md | 104 +++++----- index.html | 39 ++-- package.json | 206 +++++++++---------- src/App.vue | 18 +- src/androidPrivacy.json | 54 ++--- src/assets/main.scss | 44 ++-- src/components/AppProvider/inedx.vue | 6 +- src/components/BasicButton/index.vue | 32 +-- src/components/BasicButton/prpos.ts | 4 +- src/components/BasicInput/index.vue | 40 ++-- src/components/Iconify/index.vue | 42 ++-- src/components/Navbar/index.vue | 134 ++++++------- src/components/Test/index.vue | 10 +- src/enums/appEnum.ts | 4 +- src/enums/httpEnum.ts | 8 +- src/enums/platformEnum.ts | 150 +++++++------- src/enums/routerEnum.ts | 10 +- src/hooks/router.ts | 44 ++-- src/hooks/useGlobalStyle.ts | 14 +- src/hooks/useSystem.ts | 290 +++++++++++++-------------- src/main.ts | 12 +- src/pages.json | 240 +++++++++++----------- src/pages/about/index.vue | 92 ++++----- src/pages/demo/index.vue | 18 +- src/pages/index/index.vue | 70 +++---- src/pages/log/index.vue | 4 +- src/pages/login/index.vue | 128 ++++++------ src/pages/notFound/404.vue | 20 +- src/pages/template/index.vue | 2 +- src/pagesA/list/test1/index.vue | 6 +- src/pagesA/list/test2/index.vue | 10 +- src/services/api/auth.ts | 14 +- src/services/model/authModel.d.ts | 6 +- src/services/model/baseModel.d.ts | 6 +- src/settings/encryptionSetting.ts | 4 +- src/state/app.ts | 10 +- src/state/index.ts | 2 +- src/state/modules/auth.ts | 110 +++++----- src/state/modules/router.ts | 52 ++--- src/state/modules/user.ts | 10 +- src/types/env.d.ts | 26 +-- src/types/router/route.d.ts | 42 ++-- src/utils/cache/index.ts | 18 +- src/utils/cache/storageCache.ts | 184 ++++++++--------- src/utils/cipher.ts | 58 +++--- src/utils/env.ts | 20 +- src/utils/http/index.ts | 74 +++---- src/utils/index.ts | 10 +- src/utils/interceptors/index.ts | 4 +- src/utils/is.ts | 64 +++--- src/utils/log.ts | 4 +- src/utils/platform.ts | 262 ++++++++++++------------ src/utils/router/constant.ts | 24 +-- src/utils/router/interceptor.ts | 80 ++++---- src/utils/router/navigates.ts | 202 +++++++++---------- src/utils/router/routes.ts | 44 ++-- src/utils/uniapi/index.ts | 48 ++--- src/utils/uniapi/prompt.ts | 72 +++---- tsconfig.json | 94 ++++----- unocss.config.js | 97 +++++---- vite.config.ts | 92 ++++----- 67 files changed, 1968 insertions(+), 1978 deletions(-) diff --git a/.eslintignore b/.eslintignore index 07d8227..ac39b4d 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,21 +1,19 @@ -# eslint 忽略检查 (根据项目需要自行添加) -node_modules -dist -.idea -.vscode -.hbuilderx -src/manifest.json -src/pages.json -src/tmui/ -*.sh -node_modules -*.md -*.woff -*.ttf -*.yaml -dist +# 忽略目录 +/dist +/build +/tests +/node_modules /public -/docs -.husky -.local -/bin \ No newline at end of file +/src/public +/src/static +/src/manifest.json +/vite.config.ts + +# node 覆盖率文件 +coverage/ + +# 忽略文件 +**/*-min.js +**/*.min.js +**/*-min.css +**/*.min.css \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 26e930a..84fed4d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,97 +1,93 @@ module.exports = { - env: { - browser: true, - es2021: true, - }, - parser: 'vue-eslint-parser', - extends: [ - 'plugin:@typescript-eslint/recommended', - 'plugin:vue/vue3-essential', - 'prettier', - ], - parserOptions: { - ecmaVersion: 'latest', - parser: '@typescript-eslint/parser', - sourceType: 'module', - }, - settings: { - 'import/resolver': { - alias: { - map: [['@', './src']], - extensions: ['.ts', '.js', '.jsx', '.json'], - }, + env: { + browser: true, + es2021: true, + }, + parser: 'vue-eslint-parser', + extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-essential', 'prettier'], + parserOptions: { + ecmaVersion: 'latest', + parser: '@typescript-eslint/parser', + sourceType: 'module', + }, + settings: { + 'import/resolver': { + alias: { + map: [['@', './src']], + extensions: ['.ts', '.js', '.jsx', '.json'], + }, + }, + }, + plugins: ['vue', '@typescript-eslint', 'prettier'], + rules: { + 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-var': 'error', + 'prettier/prettier': 'error', + 'vue/no-multiple-template-root': 'off', + 'no-mutating-props': 'off', + 'vue/no-v-html': 'off', + // @fixable 必须使用单引号,禁止使用双引号 + quotes: [ + 'error', + 'single', + { + avoidEscape: true, + allowTemplateLiterals: true, + }, + ], + // 结尾必须有分号; + semi: [ + 'error', + 'always', + { + omitLastInOneLineBlock: true, + }, + ], + 'vue/script-setup-uses-vars': 'error', + '@typescript-eslint/ban-ts-ignore': 'off', + '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-var-requires': 'off', + '@typescript-eslint/no-empty-function': 'off', + 'vue/custom-event-name-casing': 'off', + 'no-use-before-define': 'off', + '@typescript-eslint/no-use-before-define': 'off', + '@typescript-eslint/ban-ts-comment': 'off', + '@typescript-eslint/ban-types': 'off', + '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/explicit-module-boundary-types': 'off', + '@typescript-eslint/no-unused-vars': [ + 'warn', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + 'no-unused-vars': [ + 'warn', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + 'space-before-function-paren': 'off', + 'vue/attributes-order': 'off', + 'vue/v-on-event-hyphenation': 'off', + 'vue/multi-word-component-names': 'off', + 'vue/one-component-per-file': 'off', + 'vue/html-closing-bracket-newline': 'off', + 'vue/max-attributes-per-line': 'off', + 'vue/multiline-html-element-content-newline': 'off', + 'vue/singleline-html-element-content-newline': 'off', + 'vue/attribute-hyphenation': 'off', + 'vue/require-default-prop': 'off', + }, + globals: { + defineProps: 'readonly', + defineEmits: 'readonly', + defineExpose: 'readonly', + withDefaults: 'readonly', + uni: 'readonly', }, - }, - plugins: ['vue', '@typescript-eslint', 'prettier'], - rules: { - 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', - 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', - 'no-var': 'error', - 'prettier/prettier': 'error', - 'vue/no-multiple-template-root': 'off', - 'no-mutating-props': 'off', - 'vue/no-v-html': 'off', - // @fixable 必须使用单引号,禁止使用双引号 - quotes: [ - 'error', - 'single', - { - avoidEscape: true, - allowTemplateLiterals: true, - }, - ], - // 结尾必须有分号; - semi: [ - 'error', - 'always', - { - omitLastInOneLineBlock: true, - }, - ], - 'vue/script-setup-uses-vars': 'error', - '@typescript-eslint/ban-ts-ignore': 'off', - '@typescript-eslint/explicit-function-return-type': 'off', - '@typescript-eslint/no-explicit-any': 'off', - '@typescript-eslint/no-var-requires': 'off', - '@typescript-eslint/no-empty-function': 'off', - 'vue/custom-event-name-casing': 'off', - 'no-use-before-define': 'off', - '@typescript-eslint/no-use-before-define': 'off', - '@typescript-eslint/ban-ts-comment': 'off', - '@typescript-eslint/ban-types': 'off', - '@typescript-eslint/no-non-null-assertion': 'off', - '@typescript-eslint/explicit-module-boundary-types': 'off', - '@typescript-eslint/no-unused-vars': [ - 'warn', - { - argsIgnorePattern: '^_', - varsIgnorePattern: '^_', - }, - ], - 'no-unused-vars': [ - 'warn', - { - argsIgnorePattern: '^_', - varsIgnorePattern: '^_', - }, - ], - 'space-before-function-paren': 'off', - 'vue/attributes-order': 'off', - 'vue/v-on-event-hyphenation': 'off', - 'vue/multi-word-component-names': 'off', - 'vue/one-component-per-file': 'off', - 'vue/html-closing-bracket-newline': 'off', - 'vue/max-attributes-per-line': 'off', - 'vue/multiline-html-element-content-newline': 'off', - 'vue/singleline-html-element-content-newline': 'off', - 'vue/attribute-hyphenation': 'off', - 'vue/require-default-prop': 'off', - }, - globals: { - defineProps: 'readonly', - defineEmits: 'readonly', - defineExpose: 'readonly', - withDefaults: 'readonly', - uni: 'readonly', - }, }; diff --git a/.prettierignore b/.prettierignore index 364db71..a11f08e 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,20 +1,18 @@ -# 忽略格式化文件 (根据项目需要自行添加) -node_modules -dist -.idea -.vscode -.hbuilderx -src/manifest.json -src/pages.json -*.sh -node_modules -*.md -*.woff -*.ttf -*.yaml -dist +# 忽略目录 +/dist +/build +/tests +/node_modules /public -/docs -.husky -.local -/bin \ No newline at end of file +/src/public +/src/static +/src/manifest.json + +# node 覆盖率文件 +coverage/ + +# 忽略文件 +**/*-min.js +**/*.min.js +**/*-min.css +**/*.min.css \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js index 5521157..e5c5a7d 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,40 +1,37 @@ module.exports = { - // 一行最多 160 字符 - printWidth: 160, - // 不使用缩进符,而使用空格 - useTabs: true, - // 使用 2 个空格缩进 - tabWidth: 4, - tabSize: 4, - // 行尾需要有分号 - semi: true, - // 使用单引号 - singleQuote: true, - // 对象的 key 仅在必要时用引号 (可选值as-needed|consistent|preserve) - quoteProps: 'as-needed', - // jsx 不使用单引号,而使用双引号 - jsxSingleQuote: false, - // 末尾不需要逗号 'es5' (可选值none|es5|all,默认none) - trailingComma: 'es5', - // 大括号内的首尾需要空格 - bracketSpacing: true, - // jsx 标签的反尖括号需要换行 - jsxBracketSameLine: false, - // 箭头函数,只有一个参数的时候,也需要括号 - arrowParens: 'always', - // 每个文件格式化的范围是文件的全部内容 - rangeStart: 0, - rangeEnd: Infinity, - // 不需要写文件开头的 @prettier - requirePragma: false, - // 不需要自动在文件开头插入 @prettier - insertPragma: false, - // 使用默认的折行标准 (可选值always|never|preserve) - proseWrap: 'preserve', - // 根据显示样式决定 html 要不要折行 (可选值css|strict|ignore) - htmlWhitespaceSensitivity: 'css', - // vue脚本文件和样式的缩进 - vueIndentScriptAndStyle: false, - // 换行符使用 lf 结尾是 (可选值auto|lf|crlf|cr) - endOfLine: 'lf', + // .pellerrc 的架构 官网参考:https://prettier.io/docs/en/options.html#tab-width + $schema: 'https://json.schemastore.org/prettierrc', + // 一行最多 120 字符 + printWidth: 160, + // 使用 4 个空格缩进 + tabWidth: 4, + // 不使用 tab 缩进,而使用空格 + useTabs: false, + // 行尾需要有分号 + semi: true, + // 使用单引号代替双引号 + singleQuote: true, + // 对象的 key 仅在必要时用引号 + quoteProps: 'as-needed', + // jsx 不使用单引号,而使用双引号 + jsxSingleQuote: false, + // 末尾使用逗号 + trailingComma: 'all', + // 大括号内的首尾需要空格 { foo: bar } + bracketSpacing: true, + // 箭头函数,只有一个参数的时候,也需要括号 + arrowParens: 'always', + // 每个文件格式化的范围是文件的全部内容 + rangeStart: 0, + rangeEnd: Infinity, + // 不需要写文件开头的 @prettier + requirePragma: false, + // 不需要自动在文件开头插入 @prettier + insertPragma: false, + // 使用默认的折行标准 + proseWrap: 'preserve', + // 根据显示样式决定 html 要不要折行 + htmlWhitespaceSensitivity: 'css', + // 换行符使用 lf + endOfLine: 'lf', }; diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 696747b..9771df2 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,10 +1,9 @@ { "recommendations": [ - "CodeInChinese.EnglishChineseDictionary", // 翻译(英汉词典) - "kisstkondoros.vscode-gutter-preview", // Image 预览 - "ritwickdey.LiveServer", // 为静态和动态页面启动具有实时重载功能的本地开发服务器 - "antfu.unocss", // UnoCSS 原子化css - "esbenp.prettier-vscode", // 格式化 + "CodeInChinese.EnglishChineseDictionary", // 翻译(英汉词典) + "kisstkondoros.vscode-gutter-preview", // Image 预览 + "ritwickdey.LiveServer", // 为静态和动态页面启动具有实时重载功能的本地开发服务器 + "antfu.unocss", // UnoCSS 原子化css + "esbenp.prettier-vscode" // 格式化 ] - } - \ No newline at end of file +} diff --git a/.vscode/settings.json b/.vscode/settings.json index f1715a1..b68d597 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,11 +3,11 @@ "editor.defaultFormatter": "esbenp.prettier-vscode", // 定义一个默认格式化程序, 该格式化程序优先于所有其他格式化程序设置。必须是提供格式化程序的扩展的标识符。 "editor.formatOnSave": true, //在保存时格式化文件。格式化程序必须可用,延迟后文件不能保存,并且编辑器不能关闭。 - "editor.detectIndentation": false, // 控制在基于文件内容打开文件时是否自动检测 #editor.tabSize# 和 #editor.insertSpaces#。 - "editor.tabSize": 4, + "editor.detectIndentation": false, // 控制在基于文件内容打开文件时是否自动检测 #editor.tabSize# 和 #editor.insertSpaces#。 + "editor.tabSize": 4, "editor.codeActionsOnSave": { - "source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。 - "source.fixAll.eslint": true, - "source.fixAll.stylelint": true - }, // 要在保存时运行的代码操作种类。 -} \ No newline at end of file + "source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。 + "source.fixAll.eslint": true, + "source.fixAll.stylelint": true + } // 要在保存时运行的代码操作种类。 +} diff --git a/README.md b/README.md index adcf580..abc229d 100644 --- a/README.md +++ b/README.md @@ -11,28 +11,28 @@ ## 简介 -- **uni-app Vue3 Vite4 pinia2 TypeScript 基础框架** -- cli创建的Vue3/Vite项目 与 使用HBuilderX导入插件 的包有差异,请直接访问 [开源地址](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template) -- 访问[uniapp插件](https://ext.dcloud.net.cn/plugin?id=8559) - +- **uni-app Vue3 Vite4 pinia2 TypeScript 基础框架** +- cli 创建的 Vue3/Vite 项目 与 使用 HBuilderX 导入插件 的包有差异,请直接访问 [开源地址](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template) +- 访问[uniapp 插件](https://ext.dcloud.net.cn/plugin?id=8559) ### 说明 -- 框架完全基于Vue3 SFC ` -