-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
36 lines (35 loc) · 987 Bytes
/
.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
---
Checks: >
clang-diagnostic-*,
clang-analyzer-*,
cppcoreguidelines-*,
bugprone-*,
performance-*,
portability-*,
readability-*,
hicpp-*,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-concat-nested-namespaces,
-readability-identifier-length,
-cppcoreguidelines-avoid-non-const-global-variables
WarningsAsErrors: true
HeaderFilterRegex: ""
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors
value: "1"
- key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: "1"
- key: cppcoreguidelines-avoid-do-while.IgnoreMacros
value: true
- key: modernize-loop-convert.MaxCopySize
value: "16"
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: modernize-loop-convert.NamingStyle
value: CamelCase
- key: modernize-use-nullptr.NullMacros
value: "NULL"
---