41 lines
515 B
Plaintext
41 lines
515 B
Plaintext
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
|
|
}
|
|
----
|
|
|
|
|