mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00:00
build(lint): remove unnecessary clint.py rules
Uncrustify is the source of truth where possible. Remove any redundant checks from clint.py.
This commit is contained in:
@@ -311,8 +311,8 @@ static int badword_captype(char *word, char *end)
|
||||
}
|
||||
|
||||
// Count the number of UPPER and lower case letters.
|
||||
int l= 0;
|
||||
int u= 0;
|
||||
int l = 0;
|
||||
int u = 0;
|
||||
bool first = false;
|
||||
for (char *p = word; p < end; MB_PTR_ADV(p)) {
|
||||
int c = utf_ptr2char(p);
|
||||
|
Reference in New Issue
Block a user