style(custom): 换行符替换lf

This commit is contained in:
2023-10-10 15:20:10 +08:00
parent 5b33290de6
commit 4074cc4623
9 changed files with 6240 additions and 1516 deletions

View File

@@ -7,7 +7,10 @@ module.exports = {
{ value: 'refactor', name: 'refactor: 代码重构(不包括 bug 修复、功能新增)' }, { value: 'refactor', name: 'refactor: 代码重构(不包括 bug 修复、功能新增)' },
{ value: 'perf', name: 'perf: 性能优化' }, { value: 'perf', name: 'perf: 性能优化' },
{ value: 'test', name: 'test: 添加、修改测试用例' }, { value: 'test', name: 'test: 添加、修改测试用例' },
{ value: 'build', name:'build: 构建流程、外部依赖变更(如升级 npm 包、修改 脚手架 配置等)' }, {
value: 'build',
name: 'build: 构建流程、外部依赖变更(如升级 npm 包、修改 脚手架 配置等)',
},
{ value: 'ci', name: 'ci: 修改 CI 配置、脚本' }, { value: 'ci', name: 'ci: 修改 CI 配置、脚本' },
{ value: 'chore', name: 'chore: 对构建过程或辅助工具和库的更改(不影响源文件、测试用例)' }, { value: 'chore', name: 'chore: 对构建过程或辅助工具和库的更改(不影响源文件、测试用例)' },
{ value: 'revert', name: 'revert: 回滚 commit' }, { value: 'revert', name: 'revert: 回滚 commit' },
@@ -26,7 +29,7 @@ module.exports = {
].map(([value, description]) => { ].map(([value, description]) => {
return { return {
value, value,
name: `${value.padEnd(30)} (${description})` name: `${value.padEnd(30)} (${description})`,
} }
}), }),
messages: { messages: {
@@ -37,9 +40,9 @@ module.exports = {
body: '填写更加详细的变更描述(可选)。使用 "|" 换行:', body: '填写更加详细的变更描述(可选)。使用 "|" 换行:',
breaking: '列举非兼容性重大的变更(可选):', breaking: '列举非兼容性重大的变更(可选):',
footer: '列举出所有变更的 Issues Closed可选。 例如: #31, #34', footer: '列举出所有变更的 Issues Closed可选。 例如: #31, #34',
confirmCommit: '确认提交?' confirmCommit: '确认提交?',
}, },
allowBreakingChanges: ['feat', 'fix'], allowBreakingChanges: ['feat', 'fix'],
subjectLimit: 100, subjectLimit: 100,
breaklineChar: '|' breaklineChar: '|',
} }

15
.idea/git_toolbox_prj.xml generated Normal file
View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitToolBoxProjectSettings">
<option name="commitMessageIssueKeyValidationOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
<option name="commitMessageValidationEnabledOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
</component>
</project>

View File

@@ -4,6 +4,6 @@
"antfu.iconify", "antfu.iconify",
"mikestead.dotenv", "mikestead.dotenv",
"sdras.vue-vscode-snippets", "sdras.vue-vscode-snippets",
"cipchk.cssrem", "cipchk.cssrem"
] ]
} }

View File

@@ -41,7 +41,6 @@
[Vue Naive Admin Docs](https://zclzone.github.io/vue-naive-admin-docs) [Vue Naive Admin Docs](https://zclzone.github.io/vue-naive-admin-docs)
### Getting Started ### Getting Started
```shell ```shell
@@ -202,8 +201,3 @@ Vue Naive Admin
<a href="https://blog.qszone.com/about/"> <a href="https://blog.qszone.com/about/">
<img src="https://assets.qszone.com/images/about.png" style="max-width: 400px" /> <img src="https://assets.qszone.com/images/about.png" style="max-width: 400px" />
</a> </a>

View File

@@ -9,11 +9,13 @@ npx corepack enable // 可能需要管理员权限
``` ```
这将自动在您的系统上安装 pnpm。 但是,它可能不是最新版本的 pnpm。 若要升级,请检查[最新的 pnpm 版本](https://github.com/pnpm/pnpm/releases/latest) 并运行,如 7.14.0 这将自动在您的系统上安装 pnpm。 但是,它可能不是最新版本的 pnpm。 若要升级,请检查[最新的 pnpm 版本](https://github.com/pnpm/pnpm/releases/latest) 并运行,如 7.14.0
``` ```
corepack prepare pnpm@7.14.0 --activate corepack prepare pnpm@7.14.0 --activate
``` ```
如果是 Node.js v16.17 或者更新的版本,可以直接安装最新版本的 pnpm 如果是 Node.js v16.17 或者更新的版本,可以直接安装最新版本的 pnpm
``` ```
corepack prepare pnpm@latest --activate corepack prepare pnpm@latest --activate
``` ```

View File

@@ -11,7 +11,8 @@
"lint:fix": "eslint --fix --ext .js,.vue .", "lint:fix": "eslint --fix --ext .js,.vue .",
"lint:staged": "lint-staged", "lint:staged": "lint-staged",
"prepare": "husky install", "prepare": "husky install",
"preview": "vite preview" "preview": "vite preview",
"lf": "npx prettier --write --end-of-line lf ."
}, },
"lint-staged": { "lint-staged": {
"*.{js,vue}": [ "*.{js,vue}": [

6595
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff