From 0449e251f66c6d1685b8ca5411baa486e03c521d Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Fri, 16 Jun 2023 10:43:09 +0800 Subject: [PATCH] feat(eslint): add antfu eslint --- .eslintrc | 3 --- .eslintrc.js | 11 +++++++++++ .vscode/settings.json | 15 ++++++++++++--- commitlint.config.js | 2 +- mock/module/user.ts | 4 +--- package.json | 2 ++ src/main.ts | 7 ++++--- src/typings/service.d.ts | 7 +++++++ 8 files changed, 38 insertions(+), 13 deletions(-) delete mode 100644 .eslintrc create mode 100644 .eslintrc.js diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 9f1369b..0000000 --- a/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "@chansee97/eslint-config-vue" -} diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..bb7ea0b --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,11 @@ +// .eslintrc.js +process.env.ESLINT_TSCONFIG = 'tsconfig.json' + +module.exports = { + extends: '@antfu', + rules: { + '@typescript-eslint/no-unsafe-assignment': 'off', + '@typescript-eslint/no-unsafe-return': 'off', + '@typescript-eslint/no-unsafe-member-access': 'off', + }, +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 1ec6dfd..b404e3f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,18 @@ { "editor.tabSize": 2, - "editor.formatOnSave": false, - "eslint.format.enable": false, + "editor.formatOnType": true, + "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "eslint.format.enable": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, - "eslint.validate": ["typescript", "javascript", "vue", "html"] + "eslint.validate": [ + "javascript", + "javascriptreact", + "typescript", + "typescriptreact", + "vue", + "json" + ] } diff --git a/commitlint.config.js b/commitlint.config.js index cbd8b1f..4fedde6 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1 @@ -module.exports = { extends: ['@chansee97/commitlint-config'] } +module.exports = { extends: ['@commitlint/config-conventional'] } diff --git a/mock/module/user.ts b/mock/module/user.ts index 63b0762..1939b42 100644 --- a/mock/module/user.ts +++ b/mock/module/user.ts @@ -439,7 +439,7 @@ export default [ { url: '/mock/login', method: 'post', - response: (options: any) => { + response: (options: Service.MockOption) => { const { userName = undefined, password = undefined } = options.body if (!userName || !password) @@ -477,8 +477,6 @@ export default [ return resultFailed(null, '未传入用户id!') const userInfo = userData.find(item => item.userId === userId) - console.warn("🚀 ~ file: user.ts:480 ~ userData:", userData) - console.warn("🚀 ~ file: user.ts:486 ~ userId:", userId) if (userInfo) return resultSuccess(userInfo) diff --git a/package.json b/package.json index 1e55aea..a8b5cd7 100644 --- a/package.json +++ b/package.json @@ -67,9 +67,11 @@ "vue-router": "^4.2.2" }, "devDependencies": { + "@antfu/eslint-config": "^0.39.5", "@chansee97/commitlint-config": "^0.3.3", "@chansee97/eslint-config-vue": "^0.3.3", "@commitlint/cli": "^17.6.5", + "@commitlint/config-conventional": "^17.6.5", "@iconify-json/icon-park-outline": "^1.1.11", "@iconify/vue": "^4.1.1", "@types/crypto-js": "^4.1.1", diff --git a/src/main.ts b/src/main.ts index accae57..989e1f1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,6 +3,7 @@ import AppLoading from './components/common/appLoading.vue' import { setupRouter } from './router' import { setupAssets } from './plugins' import { setupStore } from './store' + import { setupDirectives } from './directive' async function setupApp() { @@ -15,14 +16,14 @@ async function setupApp() { // 创建vue实例 const app = createApp(App) // 安装pinia全局状态库 - setupStore(app) + setupStore (app) // 安装自定义指令 setupDirectives(app) // 安装router await setupRouter(app) // 挂载 - await app.mount('#app') + app.mount('#app') // 卸载载入动画 appLoading.unmount() } -setupApp() +await setupApp() diff --git a/src/typings/service.d.ts b/src/typings/service.d.ts index 80233a1..eed5d76 100644 --- a/src/typings/service.d.ts +++ b/src/typings/service.d.ts @@ -42,4 +42,11 @@ declare namespace Service { /** 自定义的请求结果 */ type RequestResult = SuccessResult | FailedResult; + + interface MockOption { + url: Record; + body: Record; + query: Record; + headers: Record; + } } \ No newline at end of file