Skip to content

Commit

Permalink
Meta: Disable clang-tidy “implicit-bool-conversion” check
Browse files Browse the repository at this point in the history
This change causes the “readability-implicit-bool-conversion” check to
be completely skipped by clang-tidy.

(cherry picked from commit 94a8b635c95270f93d5f8904fe4c73d4df414116)
  • Loading branch information
sideshowbarker authored and timschumi committed Jan 25, 2025
1 parent 8010d68 commit 970c025
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Checks: >
-readability-named-parameter,
-readability-uppercase-literal-suffix,
-readability-use-anyofallof,
-readability-implicit-bool-conversion,
WarningsAsErrors: ''
HeaderFilterRegex: 'AK|Userland|Kernel|Tests'
FormatStyle: none
Expand All @@ -53,5 +54,3 @@ CheckOptions:
value: 'AK::StringView;AK::Span'
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: true
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: true

0 comments on commit 970c025

Please sign in to comment.