Skip to content
5 changes: 4 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ Checks: >
cppcoreguidelines-avoid-capturing-lambda-coroutines,
cppcoreguidelines-avoid-goto,
cppcoreguidelines-avoid-non-const-global-variables,
cppcoreguidelines-avoid-reference-coroutine-parameters
cppcoreguidelines-avoid-reference-coroutine-parameters,
# Task 4: Check that all variables are initialized before use
Comment thread
Mohit242-bit marked this conversation as resolved.
Outdated
cppcoreguidelines-init-variables
#added more check as per task 4
Comment thread
cvvergara marked this conversation as resolved.
Outdated
Comment thread
Mohit242-bit marked this conversation as resolved.
Outdated
Comment thread
Mohit242-bit marked this conversation as resolved.
Outdated

WarningsAsErrors: ''
HeaderFilterRegex: './include'
Expand Down