-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.clang-tidy
More file actions
58 lines (45 loc) · 1.19 KB
/
.clang-tidy
File metadata and controls
58 lines (45 loc) · 1.19 KB
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
---
Checks: '
bugprone-*,
-bugprone-branch-clone,
-bugprone-easily-swappable-parameters,
-bugprone-exception-escape,
-bugprone-macro-parentheses,
cert-*,
clang-analyzer-*,
-clang-analyzer-optin.core.EnumCastOutOfRange,
cppcoreguidelines-*,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-non-private-member-variables-in-classes,
-cppcoreguidelines-pro-bounds-constant-array-index,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
google-*,
-google-readability-todo,
-google-runtime-int,
hicpp-*,
-hicpp-uppercase-literal-suffix,
misc-*,
-misc-non-private-member-variables-in-classes,
-misc-no-recursion,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-type-traits,
mpi-*,
openmp-*,
-openmp-exception-escape,
-openmp-use-default-none,
performance-*,
-performance-avoid-endl,
-performance-enum-size,
portability-*,
-portability-avoid-pragma-once,
readability-*,
-readability-convert-member-functions-to-static,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-math-missing-parentheses,
-readability-suspicious-call-argument,
-readability-uppercase-literal-suffix,
'
UseColor: true
HeaderFilterRegex: ".*(include\\/plssvm|bindings\\/Python|tests).*"