// cppcheck suppressions
assertWithSideEffect

// TODO: need to come back to these
duplInheritedMember

// TODO:
// "Using memset() on struct which contains a floating point number."
// tried:
//   if (std::is_floating_point<T>::value) {
//     p = 0;
// in src/mesh/MemoryPool.h
memsetClassFloat

knownConditionTrueFalse

// no real downside/harm in these
unusedFunction
unusedPrivateFunction

// most likely due to a cppcheck configuration issue (like missing an include)
syntaxError

// try to quiet a few
//useInitializationList:src/main.cpp
useInitializationList

//unreadVariable:src/graphics/Screen.cpp
unreadVariable

redundantInitialization

//cstyleCast:src/mesh/MemoryPool.h:71
cstyleCast

// ignore stuff that is not ours
*:.pio/*
*:*/libdeps/*

// these two caused issues
missingOverride
virtualCallInConstructor