Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion exports/lint-configs/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FormatStyle: "file"
WarningsAsErrors: "*"

# Left as warnings:
# - `misc-include-cleaner` because it's difficult to resolve IWYU issues for external libraries
# without facade headers.
WarningsAsErrors: >-
*,
-misc-include-cleaner,

# Disabled checks:
# - `bugprone-easily-swappable-parameters` because it's difficult to mitigate.
Expand Down