We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 523b74c commit 43a9689Copy full SHA for 43a9689
.eslintrc.js
@@ -20,7 +20,7 @@ module.exports = {
20
'no-restricted-globals': [
21
'error',
22
// https://github.com/TooTallNate/proxy-agents/pull/242
23
- { name: 'URL', message: 'Use url.URL instead' },
+ { name: 'URL', message: 'Use `URL` from the Node.js "url" module instead.' },
24
],
25
},
26
packages/pac-proxy-agent/test/test.ts
@@ -2,6 +2,7 @@ import assert from 'assert';
2
import * as fs from 'fs';
3
import * as http from 'http';
4
import * as https from 'https';
5
+import { URL } from 'url';
6
// @ts-expect-error no types
7
import socks from 'socksv5';
8
import { listen } from 'async-listen';
0 commit comments