forked from NOAA-OWP/ngen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
32 lines (31 loc) · 774 Bytes
/
.clang-tidy
File metadata and controls
32 lines (31 loc) · 774 Bytes
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
---
Checks: |
clang-diagnostic-*,
clang-analyzer-*,
cppcoreguidelines-*,
modernize-*,
mpi-*,
bugprone-*,
boost-*,
performance-*,
hicpp-*,
google-*,
readability-*,
misc-confusable-identifiers,
misc-const-correctness,
-modernize-use-trailing-return-type,
-cppcoreguidelines-special-member-functions
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: "1"
- key: modernize-loop-convert.MaxCopySize
value: "16"
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: modernize-pass-by-value.IncludeStyle
value: google
- key: modernize-use-nullptr.NullMacros
value: "NULL"
---