We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdbcb2 commit d558cfeCopy full SHA for d558cfe
.eslintrc
@@ -50,7 +50,8 @@
50
"no-constant-condition": ["off"]
51
},
52
"env": {
53
- "browser": true
+ "browser": true,
54
+ "es6": true
55
56
"globals": {
57
"Blockly": true, # Blockly global
commitlint.config.js
@@ -1,4 +1,5 @@
1
+/* global module */
2
module.exports = {
- extends: ['@commitlint/config-conventional'],
3
- ignores: [message => message.startsWith('chore(release):')]
+ extends: ['@commitlint/config-conventional'],
4
+ ignores: [message => message.startsWith('chore(release):')]
5
};
0 commit comments