Why this matters
Improves readability and API clarity.
Use lowerCamelCase for parameters; prefer full, descriptive names over abbreviations.
Improves readability and API clarity.
Side-by-side examples engineers can pattern-match during review.
fun fetch(uId: String) { }fun fetch(userId: String) { }fun save(cn: String)fun save(clientName: String)From 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.