|
1 | 1 | ---
|
2 |
| -Checks: '-clang-analyzer-*,google-*,llvm-*,misc-*,readability-*,-google-build-explicit-make-pair,-google-explicit-constructor,-google-readability-braces-around-statements,-google-readability-casting,-google-readability-namespace-comments,-google-readability-function,-google-readability-todo,-google-runtime-int,-llvm-namespace-comment,-llvm-header-guard,-llvm-twine-local,-misc-argument-comment,-readability-braces-around-statements,-readability-identifier-naming' |
3 |
| -... |
| 2 | +Checks: > |
| 3 | + bugprone-*, |
| 4 | + -bugprone-narrowing-conversions, |
| 5 | + -bugprone-easily-swappable-parameters, |
| 6 | + -bugprone-branch-clone, |
| 7 | + -bugprone-misplaced-widening-cast, |
| 8 | + -bugprone-exception-escape, |
| 9 | + -bugprone-implicit-widening-of-multiplication-result, |
| 10 | + -bugprone-integer-division, |
| 11 | + -bugprone-reserved-identifier, |
| 12 | + -bugprone-unhandled-self-assignment, |
| 13 | + -bugprone-forward-declaration-namespace, |
| 14 | + -bugprone-sizeof-expression, |
| 15 | + -bugprone-throw-keyword-missing, |
| 16 | + -clang-analyzer-*, |
| 17 | + -clang-diagnostic-deprecated-declarations, |
| 18 | + -clang-diagnostic-constant-conversion, |
| 19 | + cppcoreguidelines-avoid-goto, |
| 20 | + cppcoreguidelines-no-malloc, |
| 21 | + cppcoreguidelines-virtual-class-destructor, |
| 22 | + google-*, |
| 23 | + -google-build-explicit-make-pair, |
| 24 | + -google-build-using-namespace, |
| 25 | + -google-explicit-constructor, |
| 26 | + -google-default-arguments, |
| 27 | + -google-readability-braces-around-statements, |
| 28 | + -google-readability-casting, |
| 29 | + -google-readability-namespace-comments, |
| 30 | + -google-readability-function, |
| 31 | + -google-readability-todo, |
| 32 | + -google-runtime-int, |
| 33 | + -google-build-namespaces, |
| 34 | + -google-runtime-references, |
| 35 | + -google-readability-function-size, |
| 36 | + llvm-*, |
| 37 | + -llvm-namespace-comment, |
| 38 | + -llvm-qualified-auto, |
| 39 | + -llvm-include-order, |
| 40 | + -llvm-else-after-return, |
| 41 | + -llvm-header-guard, |
| 42 | + -llvm-twine-local, |
| 43 | + misc-*, |
| 44 | + -misc-argument-comment, |
| 45 | + -misc-non-private-member-variables-in-classes, |
| 46 | + -misc-unconventional-assign-operator, |
| 47 | + -misc-no-recursion, |
| 48 | + -misc-misplaced-const, |
| 49 | + -misc-definitions-in-headers, |
| 50 | + -misc-unused-parameters, |
| 51 | + performance-*, |
| 52 | + -performance-noexcept-move-constructor, |
| 53 | + -performance-no-int-to-ptr, |
| 54 | + readability-*, |
| 55 | + -readability-avoid-const-params-in-decls, |
| 56 | + -readability-braces-around-statements, |
| 57 | + -readability-container-size-empty, |
| 58 | + -readability-convert-member-functions-to-static, |
| 59 | + -readability-const-return-type, |
| 60 | + -readability-function-cognitive-complexity, |
| 61 | + -readability-function-size, |
| 62 | + -readability-identifier-naming, |
| 63 | + -readability-implicit-bool-conversion, |
| 64 | + -readability-magic-numbers, |
| 65 | + -readability-else-after-return, |
| 66 | + -readability-inconsistent-declaration-parameter-name, |
| 67 | + -readability-isolate-declaration, |
| 68 | + -readability-identifier-length, |
| 69 | + -readability-redundant-declaration, |
| 70 | + -readability-uppercase-literal-suffix, |
| 71 | + -readability-named-parameter, |
| 72 | + -readability-qualified-auto, |
| 73 | + -readability-suspicious-call-argument, |
| 74 | + -readability-redundant-access-specifiers, |
| 75 | + -readability-redundant-member-init, |
| 76 | + -readability-static-definition-in-anonymous-namespace, |
| 77 | + -readability-use-anyofallof, |
| 78 | + -readability-simplify-boolean-expr, |
| 79 | + -readability-make-member-function-const, |
| 80 | + -readability-redundant-string-init, |
| 81 | + -readability-non-const-parameter, |
| 82 | + -readability-static-accessed-through-instance |
| 83 | + |
| 84 | +WarningsAsErrors: '*' |
| 85 | +HeaderFilterRegex: '.*' |
| 86 | + |
4 | 87 |
|
0 commit comments