This repository has been archived by the owner on Dec 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
.clang-tidy
46 lines (39 loc) · 1.64 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
---
---
Checks: '
clang-analyzer-core*,
clang-diagnostic-error,
bugprone*,
modernize*,
readability*,
misc*,
hicpp-use-equals-default,
-bugprone-narrowing-conversions,
-clang-analyzer-optin.performance.Padding,
-clang-analyzer-security.insecureAPI.rand,
-clang-analyzer-security.FloatLoopCounter,
-modernize-use-trailing-return-type,
-modernize-use-nodiscard,
-modernize-avoid-c-arrays,
-modernize-pass-by-value,
-modernize-make-shared,
-modernize-concat-nested-namespaces,
-readability-magic-numbers,
-readability-uppercase-literal-suffix,
-readability-braces-around-statements,
-readability-implicit-bool-conversion,
-readability-convert-member-functions-to-static,
-readability-isolate-declaration,
-readability-named-parameter,
-readability-else-after-return,
-readability-redundant-string-init,
-misc-non-private-member-variables-in-classes,
-misc-definitions-in-headers,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-non-private-member-variables-in-classes,
'
CheckOptions:
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: 1
HeaderFilterRegex: './src/*'