-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
12 lines (11 loc) · 878 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
FormatStyle: file
Checks: '-*,clang-diagnostic-*,clang-analyzer-*,readability-identifier-naming,performance-*,modernize-*,-modernize-use-trailing-return-type,-modernize-use-nodiscard'
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: camelCase }
- { key: readability-identifier-naming.VariableCase, value: camelCase }
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
- { key: readability-identifier-naming.TemplateParameterCase, value: UPPER_CASE }