Skip to content

Commit

Permalink
Update some clang tidy checks
Browse files Browse the repository at this point in the history
  • Loading branch information
dacap committed Feb 28, 2024
1 parent 8fc7592 commit b5288d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
# readability-uppercase-literal-suffix: We use a lot of 0.0f, but in a
# future we might enable this.
#
# readability-named-parameter: We prefer misc-unused-parameters to
# remove a parameter name that is not used.
#
# misc-use-anonymous-namespace: We use anonymous namespaces or static
# functions indifferently.
#
# misc-non-private-member-variables-in-classes: We use structs with
# all public members in some cases.
#
Expand All @@ -42,11 +48,13 @@ Checks: >
portability-*,
readability-*,
-bugprone-easily-swappable-parameters,
-misc-use-anonymous-namespace,
-readability-braces-around-statements,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-isolate-declaration,
-readability-magic-numbers,
-readability-named-parameter,
-readability-uppercase-literal-suffix
WarningsAsErrors: ''
CheckOptions:
Expand Down
2 changes: 1 addition & 1 deletion laf

0 comments on commit b5288d8

Please sign in to comment.