如何告诉 check-all-the-things 给出详细输出。

如何告诉 check-all-the-things 给出详细输出。

我在 Debian 伙伴。我正在尝试在仓库上使用检查所有内容。我在备注的最后得到了这个 -

Remarks:
- dangerous check: afl bfbtester lockdep perl-b-lint perl-syntax-check zzuf
- help needed: acheck android-lint ansible-lint cbmc checkmp3 chk-origtargz codespell cpants-lint cppclean debian-tracker doc8 erlang-elvis ...
- modifies files: autoscan autoupdate stylish-haskell wrap-and-sort
- no matching files: 7z-test acheck afl android-lint ansible-lint appstream-util-validate appstreamcli-validate autodep8 autoscan autoupdate ...
- no output: bashate bitmap-gnuplot bitmap-inkscape bitmap-povray bitmap-synfig checkbashisms cpuinfo disabled-tests dsa-private-key ...
- no specific checks: *.data *.ogg *.png *.py *.pyc *.txt GPL3 LICENCE LICENSE arguments
- trimmed: bitmap-gimp fdupes fhs http licensecheck pep8 pyflakes pyflakes3 pylint pylint3 spellintian suspicious-source todo

我抬头查看了 check-all-the-things 的联机帮助页,但没有看到任何内容。我正在寻找一种方法让它尽可能详细而不使用危险的检查。我之前已经询问过检查所有事情,请参阅如何将 check-all-the-things 与 .deb 包一起使用?

答案1

要查看所有日志,请运行以下命令:

check-all-the-things --silent-checks show --remarks-lines -1 --checks-output-lines -1

这会显示不输出任何内容的检查,并且不会在给定行数(默认为 1 行--remarks-lines,默认为 10 行--checks-output-lines)后剪切输出。

如果要启用修改文件的检查,请添加--flags +modify;这些检查不被认为是危险的。您可以check-all-the-things在释放之前通过添加 来验证将要执行的操作--commands show

所有这些都在手册页中......

相关内容