From 463876a7b19f089e61f98821114b26b4fd18e515 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Mon, 23 Mar 2020 13:47:39 +0200 Subject: [build] Prevent future modernize-* regressions Also ignore modernize-avoid-c-arrays, not such a big deal at the moment. --- .clang-tidy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index d9cc3baaa6..aa9640c77f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,4 +1,4 @@ -Checks: '-*,bugprone-*,clang-analyzer-*,google-*,modernize-*,performance-*,-clang-analyzer-osx.*,-google-readability-braces-around-statements,-google-readability-todo,-google-runtime-int,-google-runtime-references' -WarningsAsErrors: 'bugprone-use-after-move,performance-*' +Checks: '-*,bugprone-*,clang-analyzer-*,google-*,modernize-*,performance-*,-clang-analyzer-osx.*,-google-readability-braces-around-statements,-google-readability-todo,-google-runtime-int,-google-runtime-references,-modernize-avoid-c-arrays' +WarningsAsErrors: 'bugprone-use-after-move,modernize-*,performance-*' HeaderFilterRegex: '.*' FormatStyle: file -- cgit v1.2.1