1 Star 4 Fork 1

Vue.js / vuepress

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.commitlintrc.js 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenhaoli 提交于 2021-12-23 05:12 . ci: allow scope types for commit
const fs = require('fs')
const path = require('path')
const vuepressPackages = fs.readdirSync(path.resolve(__dirname, 'packages/@vuepress'))
const availableScopes = [
'all',
'cli',
'zh',
'types',
...vuepressPackages
]
module.exports = {
extends: [
'@commitlint/config-conventional'
],
rules: {
'scope-enum': [
2,
'always',
[
...availableScopes,
...availableScopes.map(name => `$${name}`)
]
]
}
}
1
https://gitee.com/vuejs/vuepress.git
git@gitee.com:vuejs/vuepress.git
vuejs
vuepress
vuepress
master

搜索帮助