]> git.dujemihanovic.xyz Git - u-boot.git/commit
pylint: Adjust how the output is produced
authorSimon Glass <sjg@chromium.org>
Sat, 29 Jan 2022 04:31:07 +0000 (21:31 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 31 Jan 2022 12:59:39 +0000 (07:59 -0500)
commitf8753f025f833a7d85860d5e0a0de7c7aaa6bf24
treed1c7068f21eddebc48486773d852033a2e51b6de
parent07a8c31d1789544b75fdaf05e8edf7dab75b6c1a
pylint: Adjust how the output is produced

The current Makefile rule requires there to be a 'Module' line in the
pylint output, like this:

   ************* Module binman.fip_util

This line only appears if pylint has some comments about the module. We
cannot rely on it for naming.

Update the code to instead use the filename as the identifier for each
score, so rather than:

   multiplexed_log 7.49

we output:

   test_multiplexed_log.py 7.20

It is still easy to see which file the score relates to. In fact the new
naming is nicer since the full subdirectories are shown.

The avoids the problem where a module name is not produced, and the output
gets out of sync.

Regenerate pylint.base so we can start from the current baseline.

Signed-off-by: Simon Glass <sjg@chromium.org>
Makefile
scripts/pylint.base