Why this matters
Autocompletion in editors makes writing longer names easy, and the clarity they provide is invaluable. Uncommon abbreviations should always be avoided.
Component names should prefer full words over abbreviations.
Autocompletion in editors makes writing longer names easy, and the clarity they provide is invaluable. Uncommon abbreviations should always be avoided.
Side-by-side examples engineers can pattern-match during review.
components/
|- SdSettings.vue
|- UProfOpts.vuecomponents/
|- StudentDashboardSettings.vue
|- UserProfileOptions.vueFrom the same buckets as this rule.
Check if loops use equality operators (== or !=) in termination conditions. These can lead to infinite loops if the condition is never met exactly. Instead, use relational operators like < or > for safer loop termination.