Skip to content

Commit

Permalink
Use standard ESLint disablings everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
madarche committed May 2, 2020
1 parent 903638f commit 7c4087c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/convict/test/cli.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use strict'
/*eslint no-sync: 0*/

/* eslint-disable no-sync */

const fs = require('fs')
const path = require('path')
Expand Down
4 changes: 2 additions & 2 deletions packages/convict/test/lib/runner.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use strict'

/* eslint-disable no-process-exit */

const path = require('path')

const convict = require('../../src/main.js')

/*eslint no-process-exit: 0*/

process.on('message', function(spec) {
try {
const s = require(path.join(__dirname, '../cases', spec.spec))
Expand Down

0 comments on commit 7c4087c

Please sign in to comment.