forked from gamesir-labs/dxmt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy-model
More file actions
30 lines (30 loc) · 1005 Bytes
/
Copy path.clang-tidy-model
File metadata and controls
30 lines (30 loc) · 1005 Bytes
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
---
Checks: >
-*,
bugprone-dangling-handle,
bugprone-exception-escape,
bugprone-narrowing-conversions,
bugprone-sizeof-expression,
bugprone-unused-raii,
bugprone-use-after-move,
clang-analyzer-core.*,
clang-analyzer-cplusplus.*,
clang-analyzer-deadcode.*,
clang-analyzer-nullability.*,
clang-analyzer-unix.Malloc,
clang-analyzer-unix.MismatchedDeallocator,
cppcoreguidelines-pro-bounds-array-to-pointer-decay,
cppcoreguidelines-pro-bounds-pointer-arithmetic,
cppcoreguidelines-pro-type-reinterpret-cast,
performance-noexcept-move-constructor,
readability-function-cognitive-complexity,
readability-function-size
WarningsAsErrors: '*'
HeaderFilterRegex: '(^|/)(include/dxmt_d3d12_submission_model\.hpp|src/d3d12/d3d12_submission_model\.(cpp|hpp))$'
SystemHeaders: false
FormatStyle: none
CheckOptions:
readability-function-cognitive-complexity.Threshold: '25'
readability-function-size.LineThreshold: '120'
readability-function-size.StatementThreshold: '60'
...