mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
30218579cc
* chore: set lerna changelogPreset * fix: version script * ci: update publish workflow
9 lines
282 B
JavaScript
9 lines
282 B
JavaScript
const { rules } = require('@commitlint/config-conventional');
|
|
|
|
/** @type {import('@commitlint/types').UserConfig} **/
|
|
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [2, 'always', [...rules['type-enum'][2], 'api', 'release']],
|
|
},
|
|
};
|