From 090345523f48b135804c2d703c31ddcf5ef49f61 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Mon, 5 Mar 2018 16:07:06 -0500 Subject: [PATCH] Disable ESLint `strict` rule for module `js/logging.js` acts as a module even though it lives in `js/*`. --- js/logging.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/logging.js b/js/logging.js index e4576b241..a00f7e02e 100644 --- a/js/logging.js +++ b/js/logging.js @@ -1,5 +1,7 @@ /* eslint-env node */ +/* eslint strict: ['error', 'never'] */ + const electron = require('electron'); const bunyan = require('bunyan'); const _ = require('lodash');