mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat(eslint): add antfu eslint
This commit is contained in:
parent
2f8147f9b5
commit
0449e251f6
11
.eslintrc.js
Normal file
11
.eslintrc.js
Normal 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
15
.vscode/settings.json
vendored
@ -1,9 +1,18 @@
|
|||||||
{
|
{
|
||||||
"editor.tabSize": 2,
|
"editor.tabSize": 2,
|
||||||
"editor.formatOnSave": false,
|
"editor.formatOnType": true,
|
||||||
"eslint.format.enable": false,
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnPaste": true,
|
||||||
|
"eslint.format.enable": true,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll.eslint": true
|
"source.fixAll.eslint": true
|
||||||
},
|
},
|
||||||
"eslint.validate": ["typescript", "javascript", "vue", "html"]
|
"eslint.validate": [
|
||||||
|
"javascript",
|
||||||
|
"javascriptreact",
|
||||||
|
"typescript",
|
||||||
|
"typescriptreact",
|
||||||
|
"vue",
|
||||||
|
"json"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
module.exports = { extends: ['@chansee97/commitlint-config'] }
|
module.exports = { extends: ['@commitlint/config-conventional'] }
|
||||||
|
@ -439,7 +439,7 @@ export default [
|
|||||||
{
|
{
|
||||||
url: '/mock/login',
|
url: '/mock/login',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
response: (options: any) => {
|
response: (options: Service.MockOption) => {
|
||||||
const { userName = undefined, password = undefined } = options.body
|
const { userName = undefined, password = undefined } = options.body
|
||||||
|
|
||||||
if (!userName || !password)
|
if (!userName || !password)
|
||||||
@ -477,8 +477,6 @@ export default [
|
|||||||
return resultFailed(null, '未传入用户id!')
|
return resultFailed(null, '未传入用户id!')
|
||||||
|
|
||||||
const userInfo = userData.find(item => item.userId === userId)
|
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)
|
if (userInfo)
|
||||||
return resultSuccess(userInfo)
|
return resultSuccess(userInfo)
|
||||||
|
|
||||||
|
@ -67,9 +67,11 @@
|
|||||||
"vue-router": "^4.2.2"
|
"vue-router": "^4.2.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@antfu/eslint-config": "^0.39.5",
|
||||||
"@chansee97/commitlint-config": "^0.3.3",
|
"@chansee97/commitlint-config": "^0.3.3",
|
||||||
"@chansee97/eslint-config-vue": "^0.3.3",
|
"@chansee97/eslint-config-vue": "^0.3.3",
|
||||||
"@commitlint/cli": "^17.6.5",
|
"@commitlint/cli": "^17.6.5",
|
||||||
|
"@commitlint/config-conventional": "^17.6.5",
|
||||||
"@iconify-json/icon-park-outline": "^1.1.11",
|
"@iconify-json/icon-park-outline": "^1.1.11",
|
||||||
"@iconify/vue": "^4.1.1",
|
"@iconify/vue": "^4.1.1",
|
||||||
"@types/crypto-js": "^4.1.1",
|
"@types/crypto-js": "^4.1.1",
|
||||||
|
@ -3,6 +3,7 @@ import AppLoading from './components/common/appLoading.vue'
|
|||||||
import { setupRouter } from './router'
|
import { setupRouter } from './router'
|
||||||
import { setupAssets } from './plugins'
|
import { setupAssets } from './plugins'
|
||||||
import { setupStore } from './store'
|
import { setupStore } from './store'
|
||||||
|
|
||||||
import { setupDirectives } from './directive'
|
import { setupDirectives } from './directive'
|
||||||
|
|
||||||
async function setupApp() {
|
async function setupApp() {
|
||||||
@ -15,14 +16,14 @@ async function setupApp() {
|
|||||||
// 创建vue实例
|
// 创建vue实例
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
// 安装pinia全局状态库
|
// 安装pinia全局状态库
|
||||||
setupStore(app)
|
setupStore (app)
|
||||||
// 安装自定义指令
|
// 安装自定义指令
|
||||||
setupDirectives(app)
|
setupDirectives(app)
|
||||||
// 安装router
|
// 安装router
|
||||||
await setupRouter(app)
|
await setupRouter(app)
|
||||||
// 挂载
|
// 挂载
|
||||||
await app.mount('#app')
|
app.mount('#app')
|
||||||
// 卸载载入动画
|
// 卸载载入动画
|
||||||
appLoading.unmount()
|
appLoading.unmount()
|
||||||
}
|
}
|
||||||
setupApp()
|
await setupApp()
|
||||||
|
7
src/typings/service.d.ts
vendored
7
src/typings/service.d.ts
vendored
@ -42,4 +42,11 @@ declare namespace Service {
|
|||||||
|
|
||||||
/** 自定义的请求结果 */
|
/** 自定义的请求结果 */
|
||||||
type RequestResult<T = any> = SuccessResult<T> | FailedResult;
|
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>;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user