Skip to content

Commit

Permalink
Disable ESLint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
knutkirkhorn committed May 3, 2023
1 parent 05d2977 commit 3473c8a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"import/extensions": ["error", "always"],
"no-console": "off",
"max-len": "off",
"no-plusplus": "off"
"no-plusplus": "off",
"import/no-unresolved": "off"
}
}
1 change: 0 additions & 1 deletion providers/abakus.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line import/no-unresolved
import got from 'got';
import getPackageUserAgent from 'package-user-agent';
import config from '../config.js';
Expand Down
1 change: 0 additions & 1 deletion providers/online.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line import/no-unresolved
import got from 'got';
import getPackageUserAgent from 'package-user-agent';
import config from '../config.js';
Expand Down
1 change: 0 additions & 1 deletion providers/tihlde.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line import/no-unresolved
import got from 'got';
import getPackageUserAgent from 'package-user-agent';
import config from '../config.js';
Expand Down

0 comments on commit 3473c8a

Please sign in to comment.