From b4e1f8d3ece9a49ae5c35c88cfd18d9f569e7c4c Mon Sep 17 00:00:00 2001 From: Ken Matsui <26405363+ken-matsui@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:48:26 -0800 Subject: [PATCH] Update cpplint filters --- poac.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/poac.toml b/poac.toml index 674fa6793..db2afe60a 100644 --- a/poac.toml +++ b/poac.toml @@ -22,10 +22,9 @@ filters = [ "-whitespace", "+whitespace/ending_newline", "-build/c++11", - "-build/namespaces_literals", # Didn't work correctly with inline namespaces # `namespace termcolor2::inline color_literals::inline foreground_literals` # suggested to `namespace termcolor2::inline` - "-readability/namespace", # Unknown NOLINT error category: bugprone-branch-clone # This is for clang-tidy - "-readability/nolint", # I believe non-const reference would be much better than a pointer. - "-runtime/references", + "-build/namespaces_literals", + "-readability/nolint", # Unknown NOLINT error category: bugprone-branch-clone # This is for clang-tidy + "-runtime/references", # non-const reference rather than a pointer "-readability/braces", # prioritize clang-format "-build/include_order", # prioritize clang-format "-build/include_subdir",