-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
35 lines (35 loc) · 1.05 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
---
Checks: >
readability-*,
clang-*,
portability-*,
performance-*,
bugprone-*,
misc-*,
modernize-use-override,
modernize-use-nullptr,
-clang-analyzer-security.FloatLoopCounter,
-misc-non-private-member-variables-in-classes,
-misc-unused-parameters,
-readability-else-after-return,
-readability-implicit-bool-conversion,
-readability-magic-numbers,
-readability-redundant-member-init,
-readability-uppercase-literal-suffix,
-readability-isolate-declaration,
-readability-braces-around-statements,
-readability-named-parameter,
-readability-redundant-access-specifiers,
-readability-inconsistent-declaration-parameter-name,
-readability-convert-member-functions-to-static,
-bugprone-branch-clone,
-clang-analyzer-optin.cplusplus.VirtualCall,
-readability-make-member-function-const,
-bugprone-incorrect-roundings,
-performance-unnecessary-value-param,
-readability-container-size-empty,
-bugprone-integer-division,
-bugprone-narrowing-conversions,
WarningsAsErrors: '*'
HeaderFilterRegex: '(src/.*hpp|include/.*hpp)'
...