-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
37 lines (37 loc) · 1.33 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
Checks: "-*,
bugprone-*,
cppcoreguidelines-*,
misc-no-recursion,
misc-redundant-expression,
misc-definitions-in-headers,
cppcoreguidelines-prefer-member-initializer,
modernize-use-auto,
-performance-move-const-arg,
-performance-implicit-conversion-in-loop,
-performance-type-promotion-in-math-fn,
-readability-avoid-const-params-in-decls,
-readability-braces-around-statements,
-readability-delete-null-pointer,
-readability-else-after-return,
-readability-non-const-parameter,
-readability-redundant-declaration,
-readability-isolate-declaration,
-readability-implicit-bool-conversion,
-readability-misleading-indentation,
-performance-for-range-copy,
-readability-qualified-auto,
google-build-namespaces,
google-build-using-namespace,
google-global-names-in-headers,
google-runtime-operator,
-cppcoreguidelines-pro-bounds-constant-array-index,
modernize-avoid-c-arrays,
-modernize-use-trailing-return-type,
-readability-else-after-return,
-readability-named-parameter,
-modernize-use-emplace,
-cppcoreguidelines-pro-bounds-pointer-arithmetic"
ExtraArgs:
- "-std=c++17"
ExtraArgsBefore:
- "-xc++"