Skip to content

Commit 7c4087c

Browse files
committedMay 2, 2020
Use standard ESLint disablings everywhere
1 parent 903638f commit 7c4087c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎packages/convict/test/cli.test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict'
2-
/*eslint no-sync: 0*/
2+
3+
/* eslint-disable no-sync */
34

45
const fs = require('fs')
56
const path = require('path')

‎packages/convict/test/lib/runner.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
'use strict'
22

3+
/* eslint-disable no-process-exit */
4+
35
const path = require('path')
46

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

7-
/*eslint no-process-exit: 0*/
8-
99
process.on('message', function(spec) {
1010
try {
1111
const s = require(path.join(__dirname, '../cases', spec.spec))

0 commit comments

Comments
 (0)
Please sign in to comment.