forked from aurora-multiphysics/platypus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
15 lines (15 loc) · 802 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
HeaderFilterRegex: 'platypus/[is]'
Checks: '-*,readability-identifier-naming,readability-redundant-member-init,modernize-*,-modernize-use-trailing-return-type,-modernize-avoid-c-arrays'
CheckOptions:
- key: readability-identifier-naming.AggressiveDependentMemberLookup
value: true
- key: readability-identifier-naming.ClassCase
value: 'CamelCase'
- key: readability-identifier-naming.MethodCase
value: 'CamelCase'
- key: readability-identifier-naming.MemberCase
value: 'lower_case'
- key: readability-identifier-naming.MemberPrefix
value: '_'
- key: readability-identifier-naming.LocalVariableCase
value: 'lower_case'