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"]
},
"env": {
"browser": true
"browser": true,
"es6": true
},
"globals": {
"Blockly": true, # Blockly global

View File

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