-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.clang-tidy_mpi
More file actions
35 lines (35 loc) · 982 Bytes
/
Copy path.clang-tidy_mpi
File metadata and controls
35 lines (35 loc) · 982 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
32
33
34
35
---
# Checks + accepted suppressions for SOILWAT2
Checks: >
clang-diagnostic-*,
clang-analyzer-*,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
bugprone-*,
-bugprone-easily-swappable-parameters,
-bugprone-casting-through-void,
cert-*,
concurrency-*,
-concurrency-mt-unsafe,
cppcoreguidelines-*,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-init-variables,
-cppcoreguidelines-macro-to-enum,
misc-*,
-misc-include-cleaner,
mpi-*,
performance-*,
portability-*,
readability-*,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-magic-numbers
WarningsAsErrors: '*'
HeaderFilterRegex: ''
FormatStyle: none
SystemHeaders: false
CheckOptions:
- key: readability-braces-around-statements.ShortStatementLines
value: '2'
- key: readability-uppercase-literal-suffix.NewSuffixes
value: 'L;LL;LU;LLU'
...