-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
20 lines (20 loc) · 886 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Checks: >
-*,
readability-identifier-naming,
readability-magic-numbers,
readability-non-const-parameter,
readability-braces-around-statements,
modernize-concat-nested-namespaces,
misc-definitions-in-headers,
boost-use-to-string,
modernize-make-unique,
modernize-make-shared,
readability-avoid-const-params-in-decls,
google-explicit-constructor
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: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.ConstantCase, value: lower_case }