From df7b1b5a13c45ad0153f014ce963c2a561bad478 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 3 Dec 2020 15:25:21 -0500 Subject: [PATCH] ESLint config: Enable `mocha` env for files in test/ --- test/.eslintrc.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/.eslintrc.js diff --git a/test/.eslintrc.js b/test/.eslintrc.js new file mode 100644 index 000000000..41371e2b6 --- /dev/null +++ b/test/.eslintrc.js @@ -0,0 +1,5 @@ +module.exports = { + env: { + mocha: true, + }, +};