Re: [PATCH 5/6] Makefile: Add a pylint checker to the build

2022-01-25 Thread Tom Rini
On Sun, Nov 21, 2021 at 08:48:40PM -0700, Simon Glass wrote: > At present the Python code in U-Boot is somewhat inconsistent, with some > files passing pylint quite cleanly and others not. > > Add a way to track progress on this clean-up, by checking that no module > has got any worse as a result

Re: [PATCH 5/6] Makefile: Add a pylint checker to the build

2022-01-25 Thread Tom Rini
On Sun, Nov 21, 2021 at 08:48:40PM -0700, Simon Glass wrote: > At present the Python code in U-Boot is somewhat inconsistent, with some > files passing pylint quite cleanly and others not. > > Add a way to track progress on this clean-up, by checking that no module > has got any worse as a result

Re: [PATCH 5/6] Makefile: Add a pylint checker to the build

2021-11-24 Thread Simon Glass
Hi Heinrich, On Mon, 22 Nov 2021 at 01:05, Heinrich Schuchardt wrote: > > On 11/22/21 04:48, Simon Glass wrote: > > At present the Python code in U-Boot is somewhat inconsistent, with some > > files passing pylint quite cleanly and others not. > > > > Add a way to track progress on this clean-up,

Re: [PATCH 5/6] Makefile: Add a pylint checker to the build

2021-11-22 Thread Heinrich Schuchardt
On 11/22/21 04:48, Simon Glass wrote: At present the Python code in U-Boot is somewhat inconsistent, with some files passing pylint quite cleanly and others not. Add a way to track progress on this clean-up, by checking that no module has got any worse as a result of changes. This can be used w

[PATCH 5/6] Makefile: Add a pylint checker to the build

2021-11-21 Thread Simon Glass
At present the Python code in U-Boot is somewhat inconsistent, with some files passing pylint quite cleanly and others not. Add a way to track progress on this clean-up, by checking that no module has got any worse as a result of changes. This can be used with 'make pylint'. Signed-off-by: Simon