|
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 | + - '-altera-unroll-loops' |
| 4 | + - '-boost-use-ranges' |
| 5 | + - '-clang-diagnostic-note' |
| 6 | + - '-clang-diagnostic-error' |
| 7 | + - '-cppcoreguidelines-avoid-do-while' |
| 8 | + - '-cppcoreguidelines-pro-type-vararg' |
| 9 | + - '-fuchsia-default-arguments-calls' |
| 10 | + - '-fuchsia-default-arguments-declarations' |
| 11 | + - '-fuchsia-overloaded-operator' |
| 12 | + - '-google-readability-todo' |
| 13 | + - '-hicpp-uppercase-literal-suffix' |
| 14 | + - '-hicpp-vararg' |
| 15 | + - '-llvmlibc-*' |
| 16 | + - '-misc-no-recursion' |
| 17 | + - '-modernize-use-trailing-return-type' |
| 18 | + - '-readability-*' |
| 19 | + |
| 20 | +FormatStyle: 'file' |
| 21 | +HeaderFilterRegex: '^(?!.*vulkan-renderer/build).*' |
23 | 22 |
|
24 | | -WarningsAsErrors: '' |
25 | | -HeaderFilterRegex: '.*\.(cpp|h)$' |
26 | | -FormatStyle: file |
27 | | -AnalyzeTemporaryDtors: true |
28 | 23 | 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' |
| 24 | + - key: 'bugprone-argument-comment.CommentBoolLiterals' |
| 25 | + value: '0' |
| 26 | + - key: 'bugprone-assert-side-effect.AssertMacros' |
| 27 | + value: 'assert' |
| 28 | + - key: 'bugprone-dangling-handle.HandleClasses' |
| 29 | + value: 'std::basic_string_view;std::experimental::basic_string_view' |
| 30 | + - key: 'bugprone-dynamic-static-initializers.HeaderFileExtensions' |
| 31 | + value: ',h,hh,hpp,hxx' |
| 32 | + - key: 'bugprone-suspicious-string-compare.WarnOnImplicitComparison' |
| 33 | + value: '1' |
| 34 | + - key: 'cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors' |
| 35 | + value: '1' |
| 36 | + - key: 'cppcoreguidelines-no-malloc.Allocations' |
| 37 | + value: '::malloc;::calloc' |
| 38 | + - key: 'google-readability-function-size.StatementThreshold' |
| 39 | + value: '800' |
| 40 | + - key: 'readability-identifier-naming.FunctionCase' |
| 41 | + value: 'lower_case' |
| 42 | + - key: 'readability-static-accessed-through-instance.NameSpecifierNestingThreshold' |
| 43 | + value: '3' |
0 commit comments