|
1 | | -Checks: > |
2 | | - clang-analyzer-*, |
3 | | - bugprone-*, |
4 | | - performance-*, |
5 | | - readability-*, |
6 | | - modernize-*, |
7 | | - cppcoreguidelines-*, |
8 | | - misc-*, |
9 | | - -modernize-use-trailing-return-type, |
10 | | - -modernize-use-auto, |
11 | | - -modernize-use-using, |
12 | | - -modernize-use-nodiscard, |
13 | | - -cppcoreguidelines-macro-usage, |
14 | | - -cppcoreguidelines-pro-bounds-pointer-arithmetic, |
15 | | - -cppcoreguidelines-pro-type-union-access, |
16 | | - -readability-function-cognitive-complexity, |
17 | | - -llvmlibc-restrict-system-libc-headers, |
18 | | - -llvmlibc-implementation-in-namespace, |
19 | | - -altera-unroll-loops, |
20 | | - -misc-definitions-in-headers, |
21 | | - -readability-identifier-naming, |
22 | | - -readability-identifier-length |
| 1 | +Checks: |
| 2 | + - '*' |
| 3 | + |
| 4 | +FormatStyle: 'file' |
| 5 | +HeaderFilterRegex: '^(?!.*vulkan-renderer/build).*' |
23 | 6 |
|
24 | | -WarningsAsErrors: '' |
25 | | -HeaderFilterRegex: '.*\.(cpp|h)$' |
26 | | -FormatStyle: file |
27 | | -AnalyzeTemporaryDtors: true |
28 | 7 | CheckOptions: |
29 | | - - key: modernize-loop-convert.MaxCopySize |
30 | | - value: '16' |
31 | | - - key: readability-identifier-naming.VariableCase |
32 | | - value: camelBack |
33 | | - - key: readability-identifier-naming.ClassCase |
34 | | - value: CamelCase |
35 | | - - key: readability-identifier-naming.FunctionCase |
36 | | - value: camelBack |
37 | | - - key: cppcoreguidelines-avoid-magic-numbers.IgnoreEnums |
38 | | - value: '1' |
39 | | - - key: cppcoreguidelines-avoid-magic-numbers.IgnoreOctalLiterals |
40 | | - value: '1' |
| 8 | + - key: 'bugprone-argument-comment.CommentBoolLiterals' |
| 9 | + value: '0' |
| 10 | + - key: 'bugprone-assert-side-effect.AssertMacros' |
| 11 | + value: 'assert' |
| 12 | + - key: 'bugprone-dangling-handle.HandleClasses' |
| 13 | + value: 'std::basic_string_view;std::experimental::basic_string_view' |
| 14 | + - key: 'bugprone-dynamic-static-initializers.HeaderFileExtensions' |
| 15 | + value: ',h,hh,hpp,hxx' |
| 16 | + - key: 'bugprone-suspicious-string-compare.WarnOnImplicitComparison' |
| 17 | + value: '1' |
| 18 | + - key: 'cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors' |
| 19 | + value: '1' |
| 20 | + - key: 'cppcoreguidelines-no-malloc.Allocations' |
| 21 | + value: '::malloc;::calloc' |
| 22 | + - key: 'google-readability-function-size.StatementThreshold' |
| 23 | + value: '800' |
| 24 | + - key: 'readability-identifier-naming.FunctionCase' |
| 25 | + value: 'lower_case' |
| 26 | + - key: 'readability-static-accessed-through-instance.NameSpecifierNestingThreshold' |
| 27 | + value: '3' |
0 commit comments