Skip to content

Commit

Permalink
fix: add 'use strict' to .eslintrc.js
Browse files Browse the repository at this point in the history
cacache wants that rule to replace a test and this file fails linting hehe
  • Loading branch information
wraithgar committed Apr 28, 2022
1 parent 53cb445 commit b55e448
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.js
@@ -1,5 +1,7 @@
/* This file is automatically added by @npmcli/template-oss. Do not edit. */

'use strict'

const { readdirSync: readdir } = require('fs')

const localConfigs = readdir(__dirname)
Expand Down
2 changes: 2 additions & 0 deletions lib/content/eslintrc.js
@@ -1,3 +1,5 @@
'use strict'

const { readdirSync: readdir } = require('fs')

const localConfigs = readdir(__dirname)
Expand Down

0 comments on commit b55e448

Please sign in to comment.