Skip to content

Commit

Permalink
Ignore doctest TEST* in clang tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
mlund committed Jul 2, 2024
1 parent 371cb7c commit 85fa933
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@ CheckOptions:
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.VariableCase, value: lower_case}
- { key: readability-identifier-naming.VariableIgnoredRegexp, value: 'TEST.*'}
- { key: readability-identifier-naming.LocalVariableCase, value: lower_case}
- { key: readability-identifier-naming.FunctionCase, value: lower_case}
- { key: readability-identifier-naming.FunctionIgnoredRegexp, value: '^to_json$|^from_json$'}
- { key: readability-identifier-naming.FunctionIgnoredRegexp, value: 'TEST_.*'}
- { key: readability-identifier-naming.ClassMethodCase, value: lower_case}
- { key: readability-identifier-naming.ClassMethodIgnoredRegexp, value: '^to_json$|^from_json$'}
- { key: readability-identifier-naming.ClassIgnoredRegexp, value: 'TEST_.*'}
- { key: readability-identifier-naming.ParameterCase, value: lower_case}
- { key: readability-identifier-naming.ParameterIgnoredRegexp, value: '^j$'}
- { key: readability-identifier-naming.EnumCase, value: CamelCase}
- { key: readability-identifier-naming.EnumConstantCase, value: CamelCase}
- { key: readability-identifier-naming.ConstantParameterCase, value: lower_case}
- { key: readability-identifier-naming.ConstexprVariableCase,, value: UPPER_CASE}
- { key: readability-identifier-naming.ConstantParameterIgnoredRegexp, value: lower_case}
- { key: readability-identifier-naming.ConstexprVariableCase, value: UPPER_CASE}
- { key: readability-identifier-naming.TypedefCase, value: CamelCase}
- { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: 'true'}

0 comments on commit 85fa933

Please sign in to comment.