Pieter De Gendt | 3981b22 | 2024-08-27 15:23:36 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: Apache-2.0 |
2 | # | ||||
3 | # Copyright (c) 2024, Basalte bv | ||||
4 | |||||
5 | analyzer: | ||||
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 |