← Back

dot-location warning

Discourage placing the dot on the property rather than the property

Examples

❌  Incorrect

const item = object.
    property;

✅  Correct

const foo = object
    .foo;
const bar = object.bar;