ba39006574
* disable `cert-err33-c` and `readability-identifier-length` check which causes warnings on clang-tidy v14. * disable all "readability" checks by default, instead just opt-into the useful ones (such as duplicate include). Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/365 Reviewed-by: Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr>
15 lines
570 B
Plaintext
15 lines
570 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
|
|
|
|
# false positive warnings
|
|
-clang-analyzer-valist.Uninitialized
|
|
-misc-no-recursion
|