mirror of
https://github.com/acid-info/lsd.git
synced 2025-01-12 01:54:51 +00:00
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
|