Skip to content

Commit 06d4337

Browse files
committed
fix(typescript): Restore no-shadow builtinGlobals default
1 parent c676979 commit 06d4337

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/eslint-config-zillow-typescript/rules/all-remaining.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ module.exports = {
244244
'error',
245245
{
246246
// eslint core
247-
builtinGlobals: true,
247+
builtinGlobals: false,
248248
hoist: 'functions',
249249
allow: [
250250
// ponyfills

packages/eslint-plugin-zillow/test/__snapshots__/eslint-plugin-zillow.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3356,7 +3356,7 @@ Consider using \`Record<string, unknown>\` instead, as it allows you to more eas
33563356
"fetch",
33573357
"global",
33583358
],
3359-
"builtinGlobals": true,
3359+
"builtinGlobals": false,
33603360
"hoist": "functions",
33613361
"ignoreFunctionTypeParameterNameValueShadow": true,
33623362
"ignoreTypeValueShadow": true,

0 commit comments

Comments
 (0)