mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-06-05 17:34:55 -04:00
5 lines
152 B
JavaScript
5 lines
152 B
JavaScript
/* global module */
|
|
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
ignores: [message => message.startsWith('chore(release):')]
|
|
};
|