warning
dot-locationDiscourage 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;
Discourage placing the dot on the property rather than the property
❌ Incorrect
const item = object.
property;
✅ Correct
const foo = object
.foo;
const bar = object.bar;