-
Notifications
You must be signed in to change notification settings - Fork 7
/
.clang-tidy
33 lines (31 loc) · 969 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
---
WarningsAsErrors: ''
HeaderFilterRegex: '(interfaces/python/src)|(src/include/alpaqa)'
FormatStyle: file
Checks: |
-*,
clang-analyzer-*,
clang-diagnostic-*,
bugprone-*,
modernize-*,
performance-*,
portability-*,
readability-*,
-modernize-raw-string-literal,
-modernize-use-bool-literals,
-modernize-use-trailing-return-type,
-readability-braces-around-statements,
-readability-else-after-return,
-readability-identifier-length,
-readability-isolate-declaration,
-readability-magic-numbers,
-readability-named-parameter,
-readability-redundant-access-specifiers,
-readability-static-accessed-through-instance,
-readability-uppercase-literal-suffix,
-bugprone-easily-swappable-parameters,
CheckOptions:
- key: readability-implicit-bool-conversion.AllowIntegerConditions
value: true
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: true