You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
428 B
21 lines
428 B
# SPDX-License-Identifier: Apache-2.0 |
|
# |
|
# Copyright (c) 2024, Basalte bv |
|
|
|
analyzer: |
|
# Start by disabling all |
|
- --disable-all |
|
|
|
# Enable the sensitive profile |
|
- --enable=sensitive |
|
|
|
# Disable unused cases |
|
- --disable=boost |
|
- --disable=mpi |
|
|
|
# Many identifiers in zephyr start with _ |
|
- --disable=clang-diagnostic-reserved-identifier |
|
- --disable=clang-diagnostic-reserved-macro-identifier |
|
|
|
# Cleanup |
|
- --clean
|
|
|