跳转到内容

useLiteralKeys

此内容尚不支持你的语言。

Diagnostic Category: lint/complexity/useLiteralKeys

Since: v1.0.0

Sources:

Enforce the usage of a literal access to properties over computed property access.

a.b["c"];
code-block.js:1:5 lint/complexity/useLiteralKeys  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

The computed expression can be simplified without the use of a string literal.

> 1 │ a.b[“c”];
^^^
2 │

Unsafe fix: Use a literal key instead.

1 - a.b[c];
1+ a.b.c;
2 2

a.c[`d`]
code-block.js:1:5 lint/complexity/useLiteralKeys  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

The computed expression can be simplified without the use of a string literal.

> 1 │ a.c[d]
^^^
2 │

Unsafe fix: Use a literal key instead.

1 - a.c[</strong></span><span style="color: Tomato;"><strong>d</strong></span><span style="color: Tomato;"><strong>]
1+ a.c.d
2 2

a.c[`d`] = "something"
code-block.js:1:5 lint/complexity/useLiteralKeys  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

The computed expression can be simplified without the use of a string literal.

> 1 │ a.c[d] = “something”
^^^
2 │

Unsafe fix: Use a literal key instead.

1 - a.c[</strong></span><span style="color: Tomato;"><strong>d</strong></span><span style="color: Tomato;"><strong>]·=·something
1+ a.c.d·=·something
2 2

a = {
['b']: d
}
code-block.js:2:3 lint/complexity/useLiteralKeys  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

The computed expression can be simplified to a string literal.

1 │ a = {
> 2 │ [‘b’]: d
^^^
3 │ }
4 │

Unsafe fix: Use a literal key instead.

1 1 a = {
2 - [b]:·d
2+ b:·d
3 3 }
4 4

a["c" + "d"];
a[d.c];