@@ -2,6 +2,7 @@ module.exports = {
env: {
node: true,
es6: true,
+ mocha: true,
},
globals: {
Atomics: "readonly",
@@ -11,5 +12,8 @@ module.exports = {
"esnext",
"esnext/style-guide",
"plugin:prettier/recommended"
- ]
-};
+ ],
+ "rules": {
+ "import/no-commonjs": "off" // remove after converting to TS.
+ }
+};