From 2d44cddc508d061d617a40ba753263fbd1fcc1cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=82=B2=E6=85=A2=E6=88=96=E9=A6=99=E6=A9=99?= <49575330+xiangshu233@users.noreply.github.com> Date: Tue, 20 Feb 2024 00:27:09 +0800 Subject: [PATCH] Revert "chore: delete useless workflows" --- .eslintignore | 16 + .eslintrc.js | 78 + .github/workflows/node.js.yml | 31 + .husky/commit-msg | 4 + .husky/pre-commit | 4 + .prettierignore | 9 + .stylelintignore | 3 + README.md | 150 +- build/constant.ts | 4 +- build/getConfigFileName.ts | 6 +- build/script/buildConf.ts | 37 +- build/script/postBuild.ts | 25 +- build/utils.ts | 52 +- build/vite/plugin/compress.ts | 20 +- build/vite/plugin/html.ts | 20 +- build/vite/plugin/index.ts | 46 +- build/vite/plugin/mock.ts | 4 +- build/vite/plugin/svgSprite.ts | 8 +- build/vite/plugin/visualizer.ts | 10 +- build/vite/proxy.ts | 22 +- commitlint.config.cjs => commitlint.config.js | 22 +- eslint.config.js | 61 - index.html | 55 +- mock/_createProductionServer.ts | 14 +- mock/_util.ts | 42 +- mock/user/user.ts | 47 +- package.json | 153 +- pnpm-lock.yaml | 5622 +++++------------ postcss.config.js | 22 +- prettier.config.js | 20 + src/App.vue | 108 +- src/api/system/user.ts | 20 +- src/components/SvgIcon.vue | 71 +- src/enums/breakpointEnum.ts | 16 +- src/enums/cacheEnum.ts | 10 +- src/enums/pageEnum.ts | 1 - src/hooks/core/useTimeout.ts | 43 +- src/hooks/event/useBreakpoint.ts | 92 +- src/hooks/event/useEventListener.ts | 61 +- src/hooks/event/useWindowSizeFn.ts | 37 +- src/hooks/index.ts | 4 +- src/hooks/setting/index.ts | 20 +- src/hooks/setting/useDesignSetting.ts | 18 +- src/hooks/use-async.ts | 19 +- src/hooks/useDomWidth.ts | 18 +- src/hooks/useOnline.ts | 26 +- src/hooks/useTime.ts | 58 +- src/hooks/web/useECharts.ts | 113 +- src/layout/index.vue | 57 +- src/main.ts | 39 +- src/router/base.ts | 12 +- src/router/index.ts | 29 +- src/router/modules.ts | 8 +- src/router/router-guards.ts | 75 +- src/settings/animateSetting.ts | 2 +- src/settings/componentSetting.ts | 8 +- src/settings/designSetting.ts | 26 +- src/store/index.ts | 14 +- src/store/modules/designSetting.ts | 28 +- src/store/modules/route.ts | 24 +- src/store/modules/user.ts | 111 +- src/store/mutation-types.ts | 8 +- src/styles/common.less | 6 +- src/styles/entry.css | 168 - src/styles/index.less | 1 - src/styles/transition/fade.less | 8 +- src/styles/transition/index.less | 5 +- src/styles/transition/zoom.less | 8 +- src/theme/index.ts | 19 +- src/utils/Storage.ts | 66 +- src/utils/dateUtil.ts | 10 +- src/utils/domUtils.ts | 172 +- src/utils/env.ts | 40 +- src/utils/http/axios/Axios.ts | 176 +- src/utils/http/axios/axiosCancel.ts | 48 +- src/utils/http/axios/axiosTransform.ts | 24 +- src/utils/http/axios/checkStatus.ts | 52 +- src/utils/http/axios/helper.ts | 29 +- src/utils/http/axios/index.ts | 207 +- src/utils/http/axios/types.ts | 64 +- src/utils/index.ts | 74 +- src/utils/is/index.ts | 68 +- src/utils/lib/echarts.ts | 38 +- src/utils/log.ts | 6 +- src/utils/urlUtils.ts | 17 +- src/views/dashboard/index.vue | 98 +- src/views/exception/403.vue | 51 +- src/views/exception/404.vue | 45 +- src/views/exception/500.vue | 51 +- src/views/login/ForgetPasswordForm.vue | 73 +- src/views/login/Login.vue | 26 +- src/views/login/LoginForm.vue | 119 +- src/views/login/LoginTitle.vue | 10 +- src/views/login/LoginWave.vue | 100 +- src/views/login/RegisterForm.vue | 105 +- src/views/login/useLogin.ts | 58 +- src/views/message/barChart.vue | 175 +- src/views/message/index.vue | 6 +- src/views/message/lineChart.vue | 197 +- src/views/message/pieChart.vue | 107 +- src/views/my/AccountSetting.vue | 28 +- src/views/my/ChangePassword.vue | 4 +- src/views/my/EditNickname.vue | 103 +- src/views/my/EditSign.vue | 79 +- src/views/my/EditUserInfo.vue | 132 +- src/views/my/ThemeSetting.vue | 84 +- src/views/my/components/NavBar.vue | 16 +- src/views/my/components/UploaderImage.vue | 24 +- src/views/my/index.vue | 107 +- src/views/my/pickColumns.ts | 8 +- src/views/welcome/index.vue | 132 +- stylelint.config.js | 100 + tsconfig.json | 28 +- types/config.d.ts | 32 +- types/global.d.ts | 78 +- types/index.d.ts | 26 +- types/modules.d.ts | 8 +- uno.config.ts | 64 - vite.config.ts | 102 +- windi.config.ts | 78 + 120 files changed, 4540 insertions(+), 7003 deletions(-) create mode 100644 .eslintignore create mode 100644 .eslintrc.js create mode 100644 .github/workflows/node.js.yml create mode 100644 .husky/commit-msg create mode 100644 .husky/pre-commit create mode 100644 .prettierignore create mode 100644 .stylelintignore rename commitlint.config.cjs => commitlint.config.js (91%) delete mode 100644 eslint.config.js create mode 100644 prettier.config.js delete mode 100644 src/styles/entry.css create mode 100644 stylelint.config.js delete mode 100644 uno.config.ts create mode 100644 windi.config.ts diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..74aba32 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,16 @@ +*.sh +node_modules +*.md +*.woff +*.ttf +.vscode +.idea +dist +/public +/docs +.husky +.local +/bin +Dockerfile +components.d.ts +components.d.ts diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..6c6d368 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,78 @@ +// @ts-check +const { defineConfig } = require('eslint-define-config'); +module.exports = defineConfig({ + root: true, + env: { + browser: true, + node: true, + es6: true, + }, + parser: 'vue-eslint-parser', + parserOptions: { + parser: '@typescript-eslint/parser', + ecmaVersion: 2020, + sourceType: 'module', + jsxPragma: 'React', + ecmaFeatures: { + jsx: true, + }, + }, + extends: [ + 'plugin:vue/vue3-recommended', + 'plugin:@typescript-eslint/recommended', + 'prettier', + 'plugin:prettier/recommended', + ], + rules: { + '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': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + 'no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + 'space-before-function-paren': 'off', + + 'vue/attributes-order': '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', + 'vue/multi-word-component-names': 'off', + 'vue/html-self-closing': [ + 'error', + { + html: { + void: 'always', + normal: 'never', + component: 'always', + }, + svg: 'always', + math: 'always', + }, + ], + }, +}); diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..eb4d9d5 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,31 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Node.js CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm ci + - run: npm run build --if-present + - run: npm test diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100644 index 0000000..80416c7 --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npx --no-install commitlint --edit "$1" diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100644 index 0000000..a4fee1c --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npm run lint:lint-staged diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..f7e39e6 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,9 @@ +/dist/* +.local +.output.js +/node_modules/** + +**/*.svg +**/*.sh + +/public/* diff --git a/.stylelintignore b/.stylelintignore new file mode 100644 index 0000000..0517076 --- /dev/null +++ b/.stylelintignore @@ -0,0 +1,3 @@ +/dist/* +/public/* +public/* diff --git a/README.md b/README.md index 8d72ccf..41b3b6f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@
![]() |
- ![]() |
-
![]() |
+ ![]() |
+
![]() |
- ![]() |
- ![]() |
+
![]() |
- ![]() |
-
![]() |
+ ![]() |
+
![]() |
- ![]() |
- ![]() |
+
- {{ text.title }} -
-- {{ text.details }} -
+{{ text.title }}
+{{ text.details }}