chore(wcwidth): disable readability checks

This commit is contained in:
Marcus Holland-Moritz 2025-03-16 20:58:05 +01:00
parent 129f4566a3
commit d7678a1477

View File

@ -18,6 +18,8 @@
#include <stdbool.h>
#include <stdlib.h>
// NOLINTBEGIN(readability-*)
struct width_interval {
int start;
int end;
@ -542,3 +544,5 @@ int dwarfs_wcwidth(int ucs) {
return intable(WIDE_EASTASIAN, sizeof(WIDE_EASTASIAN)/sizeof(struct width_interval), ucs) ? 2 : 1;
}
// NOLINTEND(readability-*)