-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
30 lines (30 loc) · 895 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
---
Checks: |
*,
-abseil-*,
-altera-*,
-android-*,
-fuchsia-*,
-google-*,
-llvm*,
-zircon-*,
-readability-static-accessed-through-instance,
-cppcoreguidelines-non-private-member-variables-in-classes,
-misc-non-private-member-variables-in-classes,
-hicpp-braces-around-statements,
-hicpp-special-member-functions
-*uppercase-literal-suffix
-misc-include-cleaner
CheckOptions:
- key: readability-braces-around-statements.ShortStatementLines
value: '2'
- key: readability-identifier-length.IgnoredParameterNames
value: "^(id|op)$"
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: true
- key: bugprone-easily-swappable-parameters.MinimumLength
value: 3
WarningsAsErrors: ''
HeaderFilterRegex: ''
FormatStyle: none
---