From 26ed911525d1fac513e33559b4872c3da4e7fc11 Mon Sep 17 00:00:00 2001 From: Paul Mcilwaine Date: Thu, 21 Jan 2021 10:21:00 +0100 Subject: [PATCH] Add mocha to eslintrc environment to support describe --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 0cd11f3..fd7e664 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,7 +1,8 @@ module.exports = { "env": { "es6": true, - "node": true + "node": true, + "mocha": true, }, "parserOptions": { "ecmaVersion": 5,