Update some clang tidy checks

This commit is contained in:
David Capello 2024-02-27 23:17:32 -03:00
parent 8fc7592066
commit b5288d85e7
2 changed files with 9 additions and 1 deletions

View File

@ -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.
#
@ -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:

2
laf

@ -1 +1 @@
Subproject commit a5561b2ed9adac89ebf353fb86753229eafea9e0
Subproject commit de1aeaca3552e9ce4a7681fc54ec8424a5eac910