mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-05-14 23:00:58 -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):')]
|
|
};
|