9cb9a54944
allows for developers to more easily run the analysis locally before opening a pull request if they wish. also disables a noisy warning (bugprone-assignment-in-if-condition) producing too many false positives. Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/395 Reviewed-by: Berke Kocaoğlu <kberke@metu.edu.tr> Co-authored-by: NRK <nrk@disroot.org> Co-committed-by: NRK <nrk@disroot.org>
16 lines
607 B
Plaintext
16 lines
607 B
Plaintext
# checks
|
|
clang-analyzer-*,clang-diagnostic-*,bugprone-*,performance-*,modernize-*
|
|
misc-*,android-cloexec-*,cert-*,llvm-include-order
|
|
-readability-*,readability-duplicate-include,readability-misleading-indentation
|
|
|
|
# silence
|
|
-misc-unused-parameters
|
|
-bugprone-easily-swappable-parameters,-bugprone-narrowing-conversions,-bugprone-incorrect-roundings
|
|
-bugprone-implicit-widening-of-multiplication-result,-bugprone-integer-division
|
|
-android-cloexec-fopen,-android-cloexec-pipe,-cert-err33-c
|
|
-bugprone-assignment-in-if-condition
|
|
|
|
# false positive warnings
|
|
-clang-analyzer-valist.Uninitialized
|
|
-misc-no-recursion
|