noShadowRestrictedNames
¥Summary
-
规则生效日期:
v1.0.0¥Rule available since:
v1.0.0 -
诊断类别:
lint/suspicious/noShadowRestrictedNames¥Diagnostic Category:
lint/suspicious/noShadowRestrictedNames -
此规则为推荐规则,默认启用。
¥This rule is recommended, which means is enabled by default.
-
此规则没有修复方案。
¥This rule doesn’t have a fix.
-
此规则的默认严重级别为 error。
¥The default severity of this rule is error.
-
来源:
¥Sources:
-
与
no-shadow-restricted-names相同¥Same as
no-shadow-restricted-names
-
¥How to configure
{ "linter": { "rules": { "suspicious": { "noShadowRestrictedNames": "error" } } }}¥Description
禁止标识符隐藏受限名称。
¥Disallow identifiers from shadowing restricted names.
另请参阅:noShadow
¥See also: noShadow
¥Examples
¥Invalid
function NaN() {}code-block.js:1:10 lint/suspicious/noShadowRestrictedNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Do not shadow the global “NaN” property.
> 1 │ function NaN() {}
│ ^^^
2 │
ℹ Consider renaming this variable. It’s easy to confuse the origin of variables when they’re named after a known global.
let Set;code-block.js:1:5 lint/suspicious/noShadowRestrictedNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Do not shadow the global “Set” property.
> 1 │ let Set;
│ ^^^
2 │
ℹ Consider renaming this variable. It’s easy to confuse the origin of variables when they’re named after a known global.
try { } catch(Object) {}code-block.js:1:15 lint/suspicious/noShadowRestrictedNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Do not shadow the global “Object” property.
> 1 │ try { } catch(Object) {}
│ ^^^^^^
2 │
ℹ Consider renaming this variable. It’s easy to confuse the origin of variables when they’re named after a known global.
function Array() {}code-block.js:1:10 lint/suspicious/noShadowRestrictedNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Do not shadow the global “Array” property.
> 1 │ function Array() {}
│ ^^^^^
2 │
ℹ Consider renaming this variable. It’s easy to confuse the origin of variables when they’re named after a known global.
function test(JSON) {console.log(JSON)}code-block.js:1:15 lint/suspicious/noShadowRestrictedNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Do not shadow the global “JSON” property.
> 1 │ function test(JSON) {console.log(JSON)}
│ ^^^^
2 │
ℹ Consider renaming this variable. It’s easy to confuse the origin of variables when they’re named after a known global.
¥Related links
Biome v2.1 中文网 - 粤ICP备13048890号