forked from therion/therion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
32 lines (32 loc) · 1.09 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
---
Checks: '-*,
modernize-use-override,
clang-analyzer-cplusplus*,
clang-analyzer-unix*,
misc-definitions-in-headers,
bugprone*,
-bugprone-easily-swappable-parameters,
-bugprone-macro-parentheses,
-bugprone-narrowing-conversions,
-bugprone-suspicious-enum-usage,
-bugprone-integer-division,
-bugprone-implicit-widening-of-multiplication-result,
-bugprone-incorrect-roundings,
-bugprone-suspicious-include,
-bugprone-unhandled-self-assignment,
-bugprone-branch-clone,
-bugprone-assignment-in-if-condition,
-bugprone-switch-missing-default-case,
-bugprone-chained-comparison,
performance-for-range-copy,
cppcoreguidelines-no-malloc,
cppcoreguidelines-pro-type-member-init'
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'
FormatStyle: none
CheckOptions:
- key: modernize-use-override.IgnoreDestructors
value: '1'
- key: modernize-use-nullptr.NullMacros
value: 'NULL'
...