mirror of https://github.com/acid-info/lsd.git
8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
|
const config = require('@commitlint/config-conventional')
|
||
|
|
||
|
const types = config.rules['type-enum'][2]
|
||
|
|
||
|
config.rules['type-enum'][2] = ['story'].concat(types)
|
||
|
|
||
|
module.exports = config
|