Jayanth Othayoth | 4f68fc4 | 2024-11-25 10:04:07 -0600 | [diff] [blame] | 1 | Checks: ' |
| 2 | -*, |
Jayanth Othayoth | 508113a | 2024-11-25 10:22:12 -0600 | [diff] [blame] | 3 | bugprone-argument-comment, |
| 4 | bugprone-assert-side-effect, |
| 5 | bugprone-assignment-in-if, |
| 6 | bugprone-bad-signal-to-kill-thread, |
| 7 | bugprone-bool-pointer-implicit-conversion, |
| 8 | bugprone-branch-clone, |
| 9 | bugprone-casting-through-void, |
| 10 | bugprone-chained-comparison, |
| 11 | bugprone-compare-pointer-to-member-virtual-function, |
| 12 | bugprone-copy-constructor-init, |
| 13 | bugprone-dangling-handle, |
| 14 | bugprone-dynamic-static-initializers, |
| 15 | bugprone-fold-init-type, |
Jayanth Othayoth | 109e994 | 2024-11-25 10:30:43 -0600 | [diff] [blame] | 16 | bugprone-forward-declaration-namespace, |
Jayanth Othayoth | 508113a | 2024-11-25 10:22:12 -0600 | [diff] [blame] | 17 | bugprone-forwarding-reference-overload, |
| 18 | bugprone-implicit-widening-of-multiplication-result, |
| 19 | bugprone-inaccurate-erase, |
| 20 | bugprone-inc-dec-in-conditions, |
| 21 | bugprone-incorrect-enable-if, |
| 22 | bugprone-incorrect-roundings, |
| 23 | bugprone-infinite-loop, |
| 24 | bugprone-integer-division, |
| 25 | bugprone-lambda-function-name, |
| 26 | bugprone-macro-parentheses, |
| 27 | bugprone-macro-repeated-side-effects, |
| 28 | bugprone-misplaced-operator-in-strlen-in-alloc, |
| 29 | bugprone-misplaced-pointer-arithmetic-in-alloc, |
| 30 | bugprone-misplaced-widening-cast, |
| 31 | bugprone-move-forwarding-reference, |
| 32 | bugprone-multi-level-implicit-pointer-conversion, |
| 33 | bugprone-multiple-new-in-one-expression, |
| 34 | bugprone-multiple-statement-macro, |
Jayanth Othayoth | 17ba876 | 2024-11-25 10:43:24 -0600 | [diff] [blame^] | 35 | bugprone-narrowing-conversions, |
Jayanth Othayoth | 508113a | 2024-11-25 10:22:12 -0600 | [diff] [blame] | 36 | bugprone-no-escape, |
| 37 | bugprone-non-zero-enum-to-bool-conversion, |
| 38 | bugprone-not-null-terminated-result, |
| 39 | bugprone-optional-value-conversion, |
| 40 | bugprone-parent-virtual-call, |
| 41 | bugprone-posix-return, |
| 42 | bugprone-redundant-branch-condition, |
| 43 | bugprone-reserved-identifier, |
| 44 | bugprone-shared-ptr-array-mismatch, |
| 45 | bugprone-signal-handler, |
| 46 | bugprone-signed-char-misuse, |
| 47 | bugprone-sizeof-container, |
| 48 | bugprone-sizeof-expression, |
| 49 | bugprone-spuriously-wake-up-functions, |
| 50 | bugprone-standalone-empty, |
| 51 | bugprone-string-constructor, |
| 52 | bugprone-string-integer-assignment, |
| 53 | bugprone-string-literal-with-embedded-nul, |
| 54 | bugprone-stringview-nullptr, |
| 55 | bugprone-suspicious-enum-usage, |
| 56 | bugprone-suspicious-include, |
| 57 | bugprone-suspicious-memory-comparison, |
| 58 | bugprone-suspicious-memset-usage, |
| 59 | bugprone-suspicious-missing-comma, |
| 60 | bugprone-suspicious-realloc-usage, |
| 61 | bugprone-suspicious-semicolon, |
| 62 | bugprone-suspicious-string-compare, |
| 63 | bugprone-swapped-arguments, |
| 64 | bugprone-switch-missing-default-case, |
| 65 | bugprone-terminating-continue, |
| 66 | bugprone-throw-keyword-missing, |
| 67 | bugprone-too-small-loop-variable, |
| 68 | bugprone-undefined-memory-manipulation, |
| 69 | bugprone-undelegated-constructor, |
| 70 | bugprone-unhandled-exception-at-new, |
| 71 | bugprone-unhandled-self-assignment, |
| 72 | bugprone-unique-ptr-array-mismatch, |
| 73 | bugprone-unsafe-functions, |
| 74 | bugprone-unused-local-non-trivial-variable, |
| 75 | bugprone-unused-raii, |
| 76 | bugprone-unused-return-value, |
| 77 | bugprone-use-after-move, |
| 78 | bugprone-virtual-near-miss, |
Jayanth Othayoth | 4f68fc4 | 2024-11-25 10:04:07 -0600 | [diff] [blame] | 79 | readability-identifier-naming' |
| 80 | |
| 81 | WarningsAsErrors: '*' |
| 82 | HeaderFilterRegex: '.*' |
| 83 | |
| 84 | CheckOptions: |
| 85 | - { key: readability-identifier-naming.ClassCase, value: CamelCase } |
| 86 | - { key: readability-identifier-naming.FunctionCase, value: camelBack } |
| 87 | - { key: readability-identifier-naming.NamespaceCase, value: lower_case } |