style: lint fixes for commitlint config

This commit is contained in:
Christopher Willis-Ford 2023-12-20 19:50:54 -08:00
parent acdbcb2dc0
commit d558cfe653
2 changed files with 5 additions and 3 deletions

View file

@ -50,7 +50,8 @@
"no-constant-condition": ["off"] "no-constant-condition": ["off"]
}, },
"env": { "env": {
"browser": true "browser": true,
"es6": true
}, },
"globals": { "globals": {
"Blockly": true, # Blockly global "Blockly": true, # Blockly global

View file

@ -1,4 +1,5 @@
/* global module */
module.exports = { module.exports = {
extends: ['@commitlint/config-conventional'], extends: ['@commitlint/config-conventional'],
ignores: [message => message.startsWith('chore(release):')] ignores: [message => message.startsWith('chore(release):')]
}; };