-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
11 lines (11 loc) · 1000 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
Checks: '-*,google-*,-google-runtime-references,bugprone-*,clang-analyzer-*,modernize-*,-modernize-use-trailing-return-type,-modernize-use-using,-modernize-use-default-member-init,cppcoreguidelines-*,-cppcoreguidelines-avoid-magic-numbers,readability-*,-readability-magic-numbers,llvm-include-order'
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { 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.MethodCase, value: CamelCase }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase }
FormatStyle: 'file'