37 lines
511 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Grouping all the shorthand declarations together in an object makes the declaration as a whole more readable. This rule accepts shorthand declarations grouped at either the beginning or end of an object.
== Noncompliant Code Example
----
let obj1 = {
foo,
a: 1,
color, // Noncompliant
b: 2,
judyGarland // Noncompliant
}
----
== Compliant Solution
----
let obj1 = {
foo,
color,
judyGarland,
a: 1,
b: 2
}
----
or
----
let obj1 = {
a: 1,
b: 2,
foo,
color,
judyGarland
}
----