-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
42 lines (42 loc) · 983 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
34
35
36
37
38
39
40
41
42
Checks: >-
cert-*,
clang-analyzer-*,
clang-diagnostic-*,
bugprone-*,
cppcoreguidelines-*,
google-*,
modernize-*,
misc-*,
openmp-*,
performance-*,
readability-*,
-readability-identifier-length,
-*-avoid-c-arrays,
-bugprone-easily-swappable-parameters,
-cert-err58-cpp,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-avoid-non-const-global-variables,
-cppcoreguidelines-pro-bounds-constant-array-index,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-misc-non-private-member-variables-in-classes,
-readability-function-cognitive-complexity,
-readability-magic-numbers,
-readability-redundant-declaration,
-misc-include-cleaner,
WarningsAsErrors: ""
HeaderFileExtensions:
- ""
- h
- hh
- hpp
- hxx
ImplementationFileExtensions:
- c
- cc
- cpp
- cxx
HeaderFilterRegex: '^(?!.*\/build.*\/).*'
SystemHeaders: false
FormatStyle: file
CheckOptions:
readability-identifier-naming.ClassMethodCase: "camelBack"