Disable ESLint strict rule for module

`js/logging.js` acts as a module even though it lives in `js/*`.
This commit is contained in:
Daniel Gasienica 2018-03-05 16:07:06 -05:00
parent 7db44e35bd
commit 090345523f

View file

@ -1,5 +1,7 @@
/* eslint-env node */
/* eslint strict: ['error', 'never'] */
const electron = require('electron');
const bunyan = require('bunyan');
const _ = require('lodash');