Skip to content

Commit

Permalink
added case requirements for vars
Browse files Browse the repository at this point in the history
  • Loading branch information
hakasapl committed Aug 1, 2024
1 parent f20f358 commit d7e7252
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ Checks: '-*,
modernize-*,
performance-*,
portability-*,
readability-*'
readability-*,
-readability-identifier-length'
FormatStyle: llvm
HeaderFilterRegex: 'src/|include/'
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: camelBack
- key: readability-identifier-naming.MemberCase
value: CamelCase
- key: readability-identifier-naming.ParameterCase
value: CamelCase
- key: readability-identifier-naming.UnionCase
value: CamelCase
- key: readability-identifier-naming.VariableCase
value: CamelCase
- key: readability-identifier-naming.IgnoreMainLikeFunctions
value: 1

0 comments on commit d7e7252

Please sign in to comment.