-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.clang-tidy
More file actions
38 lines (38 loc) · 1.19 KB
/
Copy path.clang-tidy
File metadata and controls
38 lines (38 loc) · 1.19 KB
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
37
38
---
Checks: '-*,
bugprone-*,
cert-*,
cppcoreguidelines-*,
hicpp-*,
misc-*,
modernize-*,
performance-*,
portability-*,
readability-*,
-*-function-cognitive-complexity,
-*-special-member-functions,
-*-no-recursion,
-*-easily-swappable-parameters,
-*-avoid-pragma-once,
-hicpp-signed-bitwise,
'
WarningsAsErrors: '*'
CheckOptions:
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: 'true'
- key: readability-identifier-length.MinimumVariableNameLength
value: '2'
- key: readability-identifier-length.MinimumParameterNameLength
value: '2'
- key: cppcoreguidelines-special-member-functions.AllowImplicitlyDeletedCopyOrMove
value: 'true'
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: 'true'
- key: modernize-use-trailing-return-type.TransformLambdas
value: 'none'
- key: misc-include-cleaner.MissingIncludes
value: 'false'
- key: misc-include-cleaner.UnusedIncludes
value: 'false'
- key: cppcoreguidelines-pro-bounds-avoid-unchecked-container-access.ExcludeClasses
value: '::fbide::Value;::std::unordered_map;::std::map'