feat(eslint): add antfu eslint

This commit is contained in:
Coffee-crocodile 2023-06-16 10:43:09 +08:00
parent 2f8147f9b5
commit 0449e251f6
8 changed files with 38 additions and 13 deletions

View File

@ -1,3 +0,0 @@
{
"extends": "@chansee97/eslint-config-vue"
}

11
.eslintrc.js Normal file
View File

@ -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',
},
}

15
.vscode/settings.json vendored
View File

@ -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"
]
}

View File

@ -1 +1 @@
module.exports = { extends: ['@chansee97/commitlint-config'] }
module.exports = { extends: ['@commitlint/config-conventional'] }

View File

@ -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)

View File

@ -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",

View File

@ -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()

View File

@ -42,4 +42,11 @@ declare namespace Service {
/** 自定义的请求结果 */
type RequestResult<T = any> = SuccessResult<T> | FailedResult;
interface MockOption {
url: Record<string, any>;
body: Record<string, any>;
query: Record<string, any>;
headers: Record<string, any>;
}
}