Skip to content

Commit

Permalink
fix import/no-extraneous-dependencies rule
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Dec 4, 2022
1 parent 4763cb9 commit 0287bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ module.exports = {
'no-new-func': 'off',
'no-bitwise': 'off',
'array-callback-return': 'off',
'import/no-extraneous-dependencies': 'off',
'no-prototype-builtins': 'off',
'no-return-assign': 'off',
'valid-typeof': 'off',
Expand Down
4 changes: 2 additions & 2 deletions scripts/nightly-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const path = require('path');
const childProcess = require('child_process');

// npm
const fetch = require('node-fetch');
const semver = require('semver');
const fetch = require('node-fetch'); // eslint-disable-line import/no-extraneous-dependencies
const semver = require('semver'); // eslint-disable-line import/no-extraneous-dependencies
const actions = require('@actions/core');

// pkg
Expand Down

0 comments on commit 0287bee

Please sign in to comment.