Skip to content

Commit df3ead2

Browse files
authored
Disable MissingIncludes in ClangTidy (#1685)
See: #1650 (comment) Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
1 parent 7900e2d commit df3ead2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cmake/common/targets/clang-tidy.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ Checks: '-*,bugprone-*,clang-analyzer-*,clang-diagnostic-*,modernize-*,concurren
55
WarningsAsErrors: '*'
66
HeaderFilterRegex: ''
77
FormatStyle: none
8+
CheckOptions:
9+
# See https://clang.llvm.org/extra/clang-tidy/checks/misc/include-cleaner.html
10+
# Otherwise ClangTidy wants us to directly include private headers from our modules
11+
- key: misc-include-cleaner.MissingIncludes
12+
value: 'false'

0 commit comments

Comments
 (0)