Skip to content
Snippets Groups Projects
Commit de5a13e3 authored by q3k's avatar q3k
Browse files

*: add .clang-tidy

parent 19b90c40
No related branches found
No related tags found
No related merge requests found
# Don't care about deprecated APIs (noisy) and about memcpy/strcpy (we'll fix
# that later).
Checks: '-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-clang-diagnostic-deprecated-declarations'
# Disable all checks for Micropython (noise)
# But we need at least one check defined otherwise clang-tidy is unhappy, so we
# pick something arbitrary.
Checks: '-*,portability-simd-intrinsics'
# Disable all checks for TinyUSB (noise)
# But we need at least one check defined otherwise clang-tidy is unhappy, so we
# pick something arbitrary.
Checks: '-*,portability-simd-intrinsics'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment