Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jetersen committed Jul 31, 2022
1 parent 648b823 commit c8af009
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -11,6 +11,7 @@
"no-unused-vars": "warn",
"unicorn/no-null": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off"
"unicorn/prevent-abbreviations": "off",
"unicorn/prefer-top-level-await": "off"
}
}
4 changes: 2 additions & 2 deletions bin/generate-fixtures.js
@@ -1,7 +1,7 @@
#!/usr/bin/env node

const fs = require('fs')
const path = require('path')
const fs = require('node:fs')
const path = require('node:path')
const fetch = require('node-fetch')
const {
findCommitsWithAssociatedPullRequestsQuery,
Expand Down
2 changes: 1 addition & 1 deletion bin/generate-schema.js
@@ -1,6 +1,6 @@
// joi-to-json-schema currently does not support v16 of Joi (https://github.com/lightsofapollo/joi-to-json-schema/issues/57)
const { convert } = require('@koa-lite/joi-schema')
const fs = require('fs')
const fs = require('node:fs')
const { schema } = require('../lib/schema')
const inputArguments = process.argv.slice(2) || []

Expand Down
2 changes: 1 addition & 1 deletion test/helpers/config-mock.js
@@ -1,4 +1,4 @@
const fs = require('fs')
const fs = require('node:fs')
const nock = require('nock')

function configFixture(fileName = 'config.yml') {
Expand Down

0 comments on commit c8af009

Please sign in to comment.