Skip to content

Commit

Permalink
Revert "Disable identifier naming checks"
Browse files Browse the repository at this point in the history
This reverts commit 38cc561.
  • Loading branch information
rhaschke committed Nov 3, 2022
1 parent 38cc561 commit 1f1a4eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Checks: 'performance-*,
readability-redundant-string-cstr,
readability-simplify-boolean-expr,
readability-container-size-empty,
readability-identifier-naming,
'
HeaderFilterRegex: '.*/moveit/task_constructor/.*\.h'
AnalyzeTemporaryDtors: false
Expand All @@ -26,14 +27,14 @@ CheckOptions:
value: '2'
# type names
- key: readability-identifier-naming.ClassCase
value: CamelCase
value: aNy_CasE # CamelCase
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.UnionCase
value: CamelCase
# method names
- key: readability-identifier-naming.MethodCase
value: camelBack
value: aNy_CasE # camelBack
# variable names
- key: readability-identifier-naming.VariableCase
value: lower_case
Expand Down

0 comments on commit 1f1a4eb

Please sign in to comment.