Skip to content

Commit 656ff8e

Browse files
chore(deps-dev): bump @readme/eslint-config from 8.7.6 to 8.8.0 (#485)
* chore(deps-dev): bump @readme/eslint-config from 8.7.6 to 8.8.0 Bumps [@readme/eslint-config](https://github.com/readmeio/standards) from 8.7.6 to 8.8.0. - [Release notes](https://github.com/readmeio/standards/releases) - [Changelog](https://github.com/readmeio/standards/blob/main/CHANGELOG.md) - [Commits](https://github.com/readmeio/standards/compare/@readme/[email protected]...@readme/[email protected]) --- updated-dependencies: - dependency-name: "@readme/eslint-config" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * chore: lint New stricter standard rules on template strings: readmeio/standards@d6a7978 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dom Harrington <[email protected]>
1 parent 398ce1a commit 656ff8e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node/src/lib/process-request.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export default function processRequest(
178178
const host = fixHeader(req.headers['x-forwarded-host']) || req.headers.host;
179179
// We use a fake host here because we rely on the host header which could be redacted.
180180
// We only ever use this reqUrl with the fake hostname for the pathname and querystring.
181-
const reqUrl = new URL(req.url, `https://readme.io`);
181+
const reqUrl = new URL(req.url, 'https://readme.io');
182182

183183
const requestData = {
184184
method: req.method,

0 commit comments

Comments
 (0)