refactor: remove redundant NOLINT comments

This commit is contained in:
dundargoc
2024-01-01 15:56:00 +01:00
committed by dundargoc
parent f69658bc35
commit b49d4e18a6
19 changed files with 62 additions and 62 deletions

View File

@@ -276,7 +276,7 @@ int open_buffer(bool read_stdin, exarg_T *eap, int flags_arg)
|| (S_ISCHR(perm)
&& is_dev_fd_file(curbuf->b_ffname))
# endif
)) { // NOLINT(whitespace/parens)
)) {
read_fifo = true;
}
if (read_fifo) {
@@ -2145,7 +2145,7 @@ buf_T *buflist_findname_exp(char *fname)
#else
false
#endif
); // NOLINT(whitespace/parens)
);
if (ffname != NULL) {
buf = buflist_findname(ffname);
xfree(ffname);