1 Star 0 Fork 154

hella_cat/vue-cesium

forked from zouyaoji/vue-cesium 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
commitlint.config.js 1.44 KB
Copy Edit Raw Blame History
zouyaoji authored 2021-12-05 23:01 . build: move to pnpm
/*
* @Author: zouyaoji@https://github.com/zouyaoji
* @Date: 2021-04-06 09:21:02
* @LastEditTime: 2021-12-05 09:45:39
* @LastEditors: zouyaoji
* @Description:
* @FilePath: \vue-cesium@next\commitlint.config.js
*/
/* eslint-disable @typescript-eslint/no-var-requires */
const { default: getWorkspacePackages } = require('@pnpm/find-workspace-packages')
async function getPackages(context) {
const ctx = context || {}
const cwd = ctx.cwd || process.cwd()
const packages = await getWorkspacePackages(cwd)
return packages
.map(pkg => pkg.manifest.name)
.filter(name => !!name)
.map(name => (name.charAt(0) === '@' ? name.split('/')[1] : name))
}
const scopes = ['project', 'core', 'style', 'docs', 'ci', 'dev', 'build', 'deploy', 'other']
module.exports = {
rules: {
'scope-enum': ctx => getPackages(ctx).then(packages => [2, 'always', [...packages, ...scopes]]),
'body-leading-blank': [1, 'always'],
'footer-leading-blank': [1, 'always'],
'header-max-length': [2, 'always', 72],
'scope-case': [2, 'always', 'lower-case'],
'subject-case': [1, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
'subject-empty': [2, 'never'],
'subject-full-stop': [2, 'never', '.'],
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
'type-enum': [2, 'always', ['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'improvement']]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/hella-cat/vue-cesium.git
git@gitee.com:hella-cat/vue-cesium.git
hella-cat
vue-cesium
vue-cesium
dev

Search