-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
60 lines (58 loc) · 1.59 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Checks: >
*,
-clang-analyzer-*,
-google-*,
-llvm-*,
-llvmlibc-*,
-altera-*,
-fuchsia-*,
-hicpp-no-array-decay,
-hicpp-*,
-performance-*,
-readability-identifier-length,
-readability-avoid-nested-conditional-operator,
-bugprone-easily-swappable-parameters,
-misc-no-recursion,
-misc-non-private-member-variables-in-classes,
cppcoreguidelines-*,
-cppcoreguidelines-avoid-c-arrays,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-avoid-c-arrays,
CheckOptions:
- key: modernize-use-auto
value: 'false'
- key: cppcoreguidelines-avoid-magic-numbers
value: 'false'
- key: cppcoreguidelines-avoid-c-arrays
value: 'true'
- key: cppcoreguidelines-non-private-member-variables-in-classes
value: 'true'
- key: cppcoreguidelines-pro-type-member-init
value: 'true'
- key: cppcoreguidelines-pro-bounds-array-to-pointer-decay
value: 'true'
- key: cppcoreguidelines-pro-bounds-constant-array-index
value: 'true'
- key: modernize-avoid-bind
value: 'true'
- key: modernize-use-emplace
value: 'true'
- key: modernize-make-shared
value: 'true'
- key: modernize-make-unique
value: 'true'
- key: modernize-use-override
value: 'true'
- key: modernize-use-using
value: 'true'
- key: readability-identifier-naming.NamespaceCase
value: lower_case
- key: readability-identifier-naming.VariableName
value: lower_case
- key: readability-identifier-naming.FunctionCase
value: lower_case
WarningsAsErrors: '*'
# HeaderFilterRegex: ''
FormatStyle: 'file'