Pattern: Missing use of object shorthand
Issue: -
Use property value shorthand in objects, when explicit braces are used.
test = "value"
# Good
{test}
test: test
# Bad
{test: test}
Pattern: Missing use of object shorthand
Issue: -
Use property value shorthand in objects, when explicit braces are used.
test = "value"
# Good
{test}
test: test
# Bad
{test: test}