-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
36 lines (33 loc) · 2.03 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Checks: >
*,
-llvm-*,
-llvmlibc-*,
-fuchsia-*,
-abseil-*,
-altera-*,
-android-*,
-modernize-use-trailing-return-type,
-bugprone-easily-swappable-parameters,
-readability-named-parameter,
-hicpp-named-parameter,
-readability-braces-around-statements,
-google-readability-braces-around-statements,
-hicpp-braces-around-statements,
WarningsAsErrors: "*"
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase , value: UPPER_CASE }
- { key: readability-identifier-naming.ClassCase , value: CamelCase }
- { key: readability-identifier-naming.StructCase , value: CamelCase }
- { key: readability-identifier-naming.TemplateParameterCase , value: CamelCase }
- { key: readability-identifier-naming.FunctionCase , value: camelBack }
- { key: readability-identifier-naming.VariableCase , value: camelBack }
- { key: readability-identifier-naming.ClassMemberCase , value: camelBack }
- { key: readability-identifier-naming.EnumConstantCase , value: UPPER_CASE }
- { key: readability-identifier-naming.ConstexprVariableCase , value: camelBack }
- { key: readability-identifier-naming.GlobalConstantCase , value: UPPER_CASE }
- { key: readability-identifier-naming.MemberConstantCase , value: UPPER_CASE }
- { key: readability-identifier-naming.StaticConstantCase , value: UPPER_CASE }
- { key: readability-implicit-bool-conversion.AllowPointerConditions , value: 1 }
- { key: readability-identifier-length.MinimumVariableNameLength , value: 2 }
- { key: readability-identifier-length.MinimumParameterNameLength , value: 2 }
- { key: misc-non-private-member-variables-in-classes.IgnorePublicMemberVariables, value: 1 }