Skip to content

Commit d558cfe

Browse files
committed
style: lint fixes for commitlint config
1 parent acdbcb2 commit d558cfe

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"no-constant-condition": ["off"]
5151
},
5252
"env": {
53-
"browser": true
53+
"browser": true,
54+
"es6": true
5455
},
5556
"globals": {
5657
"Blockly": true, # Blockly global

commitlint.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
/* global module */
12
module.exports = {
2-
extends: ['@commitlint/config-conventional'],
3-
ignores: [message => message.startsWith('chore(release):')]
3+
extends: ['@commitlint/config-conventional'],
4+
ignores: [message => message.startsWith('chore(release):')]
45
};

0 commit comments

Comments
 (0)