mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2024-11-25 16:33:00 +08:00
6 lines
152 B
JavaScript
6 lines
152 B
JavaScript
/* global module */
|
|
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
ignores: [message => message.startsWith('chore(release):')]
|
|
};
|