warning
yodaDiscourage code typed like yoda would speak
Examples
❌ Incorrect
if ('red' === color) {
// ...
}
if (true == flag) {
// ...
}
if (5 > count) {
// ...
}
if (-1 < str.indexOf(substr)) {
// ...
}
✅ Correct
if (5 & value) {
// ...
}
if (value === 'red') {
// ...
}
if (x < -1 || 1 < x) {
// ...
}