b162aee497
* includes are sorted alphabetically * their grouping and layout is the following: - nsxiv.h will be the first include - followed by any internal headers (e.g "commands.h" "config.h") - followed by system headers (<stdlib.h> etc) - followed by third party headers (X.h libwebp etc) * also add `llvm-include-order` check to clang-tidy so that it can catch unsorted includes during CI.
18 lines
741 B
Plaintext
18 lines
741 B
Plaintext
# checks
|
|
clang-analyzer-*,clang-diagnostic-*,bugprone-*,performance-*,modernize-*
|
|
misc-*,readability-*,android-cloexec-*,cert-*
|
|
llvm-include-order
|
|
|
|
# silence
|
|
-misc-unused-parameters
|
|
-bugprone-easily-swappable-parameters,-bugprone-narrowing-conversions,-bugprone-incorrect-roundings
|
|
-bugprone-implicit-widening-of-multiplication-result,-bugprone-integer-division
|
|
-readability-braces-around-statements,-readability-magic-numbers,-readability-isolate-declaration
|
|
-readability-function-cognitive-complexity,-readability-else-after-return
|
|
-readability-uppercase-literal-suffix,-readability-avoid-const-params-in-decls
|
|
-android-cloexec-fopen,-android-cloexec-pipe
|
|
|
|
# false positive warnings
|
|
-clang-analyzer-valist.Uninitialized
|
|
-misc-no-recursion
|