Appearance
no-shorthand
Expand object shorthand properties to their full form.
/// no-shorthand
/// nsh
/// no-shorthand const obj = { a, b, c: 0 }
Will be converted to:
// eslint-disable-next-line object-shorthand const obj = { a: a, b: b, c: 0 }