mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
feat: 增加commitlint提交方式
This commit is contained in:
parent
7e141b6e54
commit
ec1d011a77
4
.husky/commit-msg
Normal file
4
.husky/commit-msg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
. "$(dirname "$0")/_/husky.sh"
|
||||||
|
|
||||||
|
pnpm commitlint --edit "$1"
|
9
.husky/lintstagedrc.cjs
Normal file
9
.husky/lintstagedrc.cjs
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
module.exports = {
|
||||||
|
'*.{js,jsx,ts,tsx}': ['eslint --fix', 'prettier --write'],
|
||||||
|
'{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': ['prettier --write--parser json'],
|
||||||
|
'package.json': ['prettier --write'],
|
||||||
|
'*.vue': ['prettier --write'],
|
||||||
|
'*.{scss,less,styl,css,html}': ['prettier --write'],
|
||||||
|
'*.md': ['prettier --write'],
|
||||||
|
'*.hbs': ['prettier --write'],
|
||||||
|
};
|
@ -1,4 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. "$(dirname "$0")/_/husky.sh"
|
. "$(dirname "$0")/_/husky.sh"
|
||||||
|
|
||||||
npx lint-staged
|
[ -n "$CI" ] && exit 0
|
||||||
|
|
||||||
|
# 根据./lintsstagedrc.cjs配置格式化并提交代码
|
||||||
|
npm run lint:lint-staged
|
||||||
|
37
commitlint.config.cjs
Normal file
37
commitlint.config.cjs
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
// https://github.com/conventional-changelog/commitlint/#what-is-commitlint
|
||||||
|
|
||||||
|
// 例:feat: 增加功能
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
extends: ['@commitlint/config-conventional'],
|
||||||
|
rules: {
|
||||||
|
'type-enum': [
|
||||||
|
2,
|
||||||
|
'always',
|
||||||
|
[
|
||||||
|
'feat', // 新功能(feature)
|
||||||
|
'fix', // 修补bug
|
||||||
|
'docs', // 文档(documentation)
|
||||||
|
'style', // 格式、样式(不影响代码运行的变动)
|
||||||
|
'refactor', // 代码重构
|
||||||
|
'perf', // 性能改进
|
||||||
|
'test', // 添加测试
|
||||||
|
'ci', // 持续集成
|
||||||
|
'chore', // 构建过程或辅助工具的变动
|
||||||
|
'revert', // 回滚到上一个版本
|
||||||
|
'workflow', // 工作流改进
|
||||||
|
'mod', // 不确定分类的修改
|
||||||
|
'wip', // 开发中
|
||||||
|
'types', // 类型修改
|
||||||
|
'release', // 版本发布
|
||||||
|
'resolve a conflict', // 解决冲突
|
||||||
|
'merge branch', // 合并分支
|
||||||
|
'dependencies', // 依赖项修改
|
||||||
|
'devDependencies', // 开发依赖修改
|
||||||
|
'strengthen', // 加强,巩固
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'subject-full-stop': [0, 'never'],
|
||||||
|
'subject-case': [0, 'never'],
|
||||||
|
},
|
||||||
|
};
|
21
package.json
21
package.json
@ -30,7 +30,10 @@
|
|||||||
"build:quickapp-webview": "uni build -p quickapp-webview",
|
"build:quickapp-webview": "uni build -p quickapp-webview",
|
||||||
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
|
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
|
||||||
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
|
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
|
||||||
"eslint": "eslint --max-warnings 0 \"src/**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}\" --fix",
|
"lint": "pnpm lint:format & pnpm lint:eslint",
|
||||||
|
"lint:eslint": "eslint --max-warnings 0 --fix --ext .js,.cjs,.mjs,.jsx,.ts,.cts,.mts,.tsx,.vue ./src",
|
||||||
|
"lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
|
||||||
|
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.cjs",
|
||||||
"prepare": "husky install"
|
"prepare": "husky install"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -58,6 +61,8 @@
|
|||||||
"vue": "^3.2.47"
|
"vue": "^3.2.47"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@commitlint/cli": "^17.4.4",
|
||||||
|
"@commitlint/config-conventional": "^17.4.4",
|
||||||
"@dcloudio/types": "^3.2.11",
|
"@dcloudio/types": "^3.2.11",
|
||||||
"@dcloudio/uni-automator": "3.0.0-alpha-3070620230227001",
|
"@dcloudio/uni-automator": "3.0.0-alpha-3070620230227001",
|
||||||
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3070620230227001",
|
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3070620230227001",
|
||||||
@ -75,8 +80,7 @@
|
|||||||
"eslint": "^8.35.0",
|
"eslint": "^8.35.0",
|
||||||
"eslint-plugin-vue": "^9.9.0",
|
"eslint-plugin-vue": "^9.9.0",
|
||||||
"husky": "^8.0.3",
|
"husky": "^8.0.3",
|
||||||
"lint-staged": "^13.1.2",
|
"lint-staged": "^13.2.0",
|
||||||
"mrm": "^4.1.13",
|
|
||||||
"postcss": "^8.4.21",
|
"postcss": "^8.4.21",
|
||||||
"prettier": "^2.8.4",
|
"prettier": "^2.8.4",
|
||||||
"sass": "^1.58.3",
|
"sass": "^1.58.3",
|
||||||
@ -84,16 +88,5 @@
|
|||||||
"unocss": "^0.46.5",
|
"unocss": "^0.46.5",
|
||||||
"unocss-preset-weapp": "^0.2.5",
|
"unocss-preset-weapp": "^0.2.5",
|
||||||
"vite": "^4.1.4"
|
"vite": "^4.1.4"
|
||||||
},
|
|
||||||
"husky": {
|
|
||||||
"hooks": {
|
|
||||||
"pre-commit": "lint-staged"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lint-staged": {
|
|
||||||
"*.{js,jsx,vue,ts,tsx}": [
|
|
||||||
"eslint --max-warnings 0 --fix",
|
|
||||||
"git add"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -70,10 +70,20 @@ const onBackHome = () => {
|
|||||||
<slot name="left">
|
<slot name="left">
|
||||||
<view class="_u_h-full _u_flex _u_items-center">
|
<view class="_u_h-full _u_flex _u_items-center">
|
||||||
<template v-if="backShow">
|
<template v-if="backShow">
|
||||||
<Iconify @click="onBack" :size="navbarLeftIconSize" :color="navbarTitleColor===true?undefined:navbarTitleColor" icon="i-humbleicons-chevron-left" />
|
<Iconify
|
||||||
|
@click="onBack"
|
||||||
|
:size="navbarLeftIconSize"
|
||||||
|
:color="navbarTitleColor === true ? undefined : navbarTitleColor"
|
||||||
|
icon="i-humbleicons-chevron-left"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="backHomeShow">
|
<template v-if="backHomeShow">
|
||||||
<Iconify @click="onBackHome" :size="navbarLeftIconSize" :color="navbarTitleColor===true?undefined:navbarTitleColor" icon="i-iconoir-home-simple-door" />
|
<Iconify
|
||||||
|
@click="onBackHome"
|
||||||
|
:size="navbarLeftIconSize"
|
||||||
|
:color="navbarTitleColor === true ? undefined : navbarTitleColor"
|
||||||
|
icon="i-iconoir-home-simple-door"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</view>
|
</view>
|
||||||
</slot>
|
</slot>
|
||||||
|
@ -40,7 +40,7 @@ request.interceptors.request.use(
|
|||||||
}
|
}
|
||||||
return options;
|
return options;
|
||||||
},
|
},
|
||||||
(options) => Promise.reject(options),
|
(options) => Promise.reject(options)
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -59,7 +59,7 @@ request.interceptors.response.use(
|
|||||||
(response) =>
|
(response) =>
|
||||||
// 请求错误做点什么。可以使用async await 做异步操作
|
// 请求错误做点什么。可以使用async await 做异步操作
|
||||||
// error('Request Error!');
|
// error('Request Error!');
|
||||||
Promise.reject(response),
|
Promise.reject(response)
|
||||||
);
|
);
|
||||||
|
|
||||||
export { request };
|
export { request };
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "vite.config.*", "vitest.config.*", "cypress.config.*"], // 指定要包含在编译中的文件匹配列表
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "vite.config.*"], // 指定要包含在编译中的文件匹配列表
|
||||||
"exclude": [], // 指定要从编译中排除的文件列表
|
"exclude": [], // 指定要从编译中排除的文件列表
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": "./", // 指定基目录以解析非相对模块名
|
"baseUrl": "./", // 指定基目录以解析非相对模块名
|
||||||
|
Loading…
x
Reference in New Issue
Block a user