-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
31 lines (30 loc) · 919 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
---
Checks: |-
*,
-altera-*,
-cert-dcl21-cpp,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-fuchsia-*,
-llvmlibc-*,
-misc-no-recursion,
-modernize-use-trailing-return-type,
-readability-identifier-length,
-readability-magic-numbers
WarningsAsErrors: ''
HeaderFilterRegex: ''
FormatStyle: file
User: paul
CheckOptions:
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: true
- key: cppcoreguidelines-avoid-magic-numbers.IgnorePowersOf2IntegerValues
value: true
- key: readability-magic-numbers.IgnorePowersOf2IntegerValues
value: true
- key: hicpp-signed-bitwise.IgnorePositiveIntegerLiterals
value: true
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: true
...