-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
61 lines (58 loc) · 1.93 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
61
Checks: >-
clang-analyzer-*,
clang-diagnostic-*,
bugprone-*,
-bugprone-easily-swappable-parameters,
-bugprone-exception-escape,
cppcoreguidelines-avoid-goto,
google-*,
modernize-*,
performance-*,
readability-*,
-cppcoreguidelines-avoid-*,
-cppcoreguidelines-init-variables,
-cppcoreguidelines-non-private-member-variables-in-classes,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-bounds-constant-array-index,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-pro-type-reinterpret-cast,
-cppcoreguidelines-pro-type-vararg,
-modernize-avoid-c-arrays,
-modernize-use-trailing-return-type,
-performance-avoid-endl,
-readability-convert-member-functions-to-static,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-isolate-declaration,
-readability-magic-numbers,
WarningsAsErrors: ''
HeaderFileExtensions:
- ''
- h
- hh
- hpp
- hxx
ImplementationFileExtensions:
- c
- cc
- cpp
- cxx
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
readability-identifier-naming.ClassCase: 'CamelCase'
readability-identifier-naming.StructCase: 'CamelCase'
readability-identifier-naming.TypedefCase: 'CamelCase'
readability-identifier-naming.TypeAliasCase: 'CamelCase'
readability-identifier-naming.GlobalFunctionCase: 'CamelCase'
readability-identifier-naming.PrivateMethodCase: 'CamelCase'
readability-identifier-naming.PublicMethodCase: 'CamelCase'
readability-identifier-naming.ProtectedMethodCase: 'CamelCase'
readability-identifier-naming.PrivateMemberCase: 'lower_case'
readability-identifier-naming.PrivateMemberSuffix: '_'
readability-identifier-naming.ProtectedMemberCase: 'lower_case'
readability-identifier-naming.ProtectedMemberSuffix: '_'
readability-identifier-naming.PublicMemberCase: 'lower_case'
SystemHeaders: false