Skip to content
Merged
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions exports/lint-configs/.clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ WarningsAsErrors: >-

# Disabled checks:
# - `bugprone-easily-swappable-parameters` because it's difficult to mitigate.
# - `modernize-use-ranges` because we want to support compilations with llvm/apple clang 15.
# - `portability-template-virtual-member-function` because we don't support MSVC compilers yet.
# - `readability-identifier-length` because it's case-dependent.
# - `readability-named-parameter` because we don't want to enforce that all parameters have a name.
Expand All @@ -24,6 +25,7 @@ Checks: >-
cppcoreguidelines-*,
misc-*,
modernize-*,
-modernize-use-ranges,
performance-*,
portability-*,
-portability-template-virtual-member-function,
Expand Down