Skip to content
Snippets Groups Projects
Commit 763b8f14 authored by Sebastian Parborg's avatar Sebastian Parborg
Browse files

Clang-tidy: Ignore variable name length and .c/.cc include warnings

After some internal discussion it was decided that we should ignore name
variable length tidy warnings. Otherwise we would have warnings for
every variable that is under three characters long.

Additionally we will also ignore any warnings when including non header
files as the Unity library in our build system uses this excessively
parent dd2df5ce
Branches
Tags
No related merge requests found
...@@ -16,10 +16,9 @@ Checks: > ...@@ -16,10 +16,9 @@ Checks: >
-readability-make-member-function-const, -readability-make-member-function-const,
-readability-suspicious-call-argument, -readability-suspicious-call-argument,
-readability-redundant-member-init, -readability-redundant-member-init,
-readability-misleading-indentation, -readability-misleading-indentation,
-readability-use-anyofallof, -readability-use-anyofallof,
-readability-identifier-length,
-readability-function-cognitive-complexity, -readability-function-cognitive-complexity,
...@@ -37,6 +36,8 @@ Checks: > ...@@ -37,6 +36,8 @@ Checks: >
-bugprone-redundant-branch-condition, -bugprone-redundant-branch-condition,
-bugprone-suspicious-include,
modernize-*, modernize-*,
-modernize-use-auto, -modernize-use-auto,
-modernize-use-trailing-return-type, -modernize-use-trailing-return-type,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment