Skip to content

Commit 77d2c1d

Browse files
committed
Clean up 'use strict' usage
1 parent 031aa10 commit 77d2c1d

File tree

24 files changed

+23
-3
lines changed

24 files changed

+23
-3
lines changed

test/.eslintrc.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/base.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23
const path = require('path')
34

test/cli.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23

34
const cli = require('./helpers/cli.js')

test/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23
const path = require('path')
34

test/dir.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23
const path = require('path')
34

test/error.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23

34
const tmp = require('./helpers/tmp.js')

test/ext.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23

34
const fs = require('fs-extra')

test/fixtures/_bad-plugin.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
'use strict'
12
throw new Error('This fails')

test/glob.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const test = require('ava')
23
const path = require('path')
34

test/helpers/clean.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use strict' // eslint-disable-line
1+
'use strict'
22
const fs = require('fs-extra')
33

44
Promise.all([

0 commit comments

Comments
 (0)