diff --git a/.eslintrc b/.eslintrc
index 85432cdf..9b019701 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -50,7 +50,8 @@
         "no-constant-condition": ["off"]
     },
     "env": {
-        "browser": true
+        "browser": true,
+        "es6": true
     },
     "globals": {
         "Blockly": true, # Blockly global
diff --git a/commitlint.config.js b/commitlint.config.js
index d89185ea..93feaad6 100644
--- a/commitlint.config.js
+++ b/commitlint.config.js
@@ -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):')]
 };