diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2019-08-17 17:39:55 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-22 15:05:58 +0200 |
commit | bcf35e64b5662f716e0de59e95fdd9ffb02238a7 (patch) | |
tree | b8bd176fc443503626877d6d96cd96f99db07346 | |
parent | 62225e48bba811d974bb85421c0b39df4ef50b75 (diff) |
clang-tidy: Edit config to include checks that have been executed
Not including the modernize-use-emplace, since that really broke nearly
every line it touched.
-rw-r--r-- | .clang-tidy | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.clang-tidy b/.clang-tidy index 0b824dfd3f..a9c77731da 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,7 +1,8 @@ --- -Checks: '-*,misc-throw-by-value-catch-by-reference,' +Checks: '-*,misc-throw-by-value-catch-by-reference,misc-static-assert' +# Not in here: modernize-use-emplace, since that basically broke all things it touched WarningsAsErrors: '' -HeaderFilterRegex: '' +HeaderFilterRegex: '\.(cc|c|cpp|h|hpp)$' AnalyzeTemporaryDtors: false FormatStyle: file CheckOptions: |