1# SPDX-License-Identifier: Apache-2.0 2# 3# Copyright (c) 2024, Basalte bv 4 5analyzer: 6 # Start by disabling all 7 - --disable-all 8 9 # Enable the sensitive profile 10 - --enable=sensitive 11 12 # Disable unused cases 13 - --disable=boost 14 - --disable=mpi 15 16 # Many identifiers in zephyr start with _ 17 - --disable=clang-diagnostic-reserved-identifier 18 - --disable=clang-diagnostic-reserved-macro-identifier 19 20 # Cleanup 21 - --clean 22