diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-04 20:21:08 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-04-04 18:35:53 +0000 |
commit | 7717694f62978697f7886b7661363785f5d58efd (patch) | |
tree | 1cca8dbd7a9c0258f7b9b574895b5823e2e29b79 /Makefile | |
parent | 7589e1da8ca63576e651ea1f7da86ea65045ad2a (diff) | |
download | vyos-1x-7717694f62978697f7886b7661363785f5d58efd.tar.gz vyos-1x-7717694f62978697f7886b7661363785f5d58efd.zip |
Makefile: improve "unused-imports" target
(cherry picked from commit faa153524f04ebe8ab5f12d7afe6df2a6eb3728a)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ SHIM_DIR := src/shim LIBS := -lzmq CFLAGS := BUILD_ARCH := $(shell dpkg-architecture -q DEB_BUILD_ARCH) - J2LINT := $(shell command -v j2lint 2> /dev/null) +PYLINT_FILES := $(shell git ls-files *.py) config_xml_src = $(wildcard interface-definitions/*.xml.in) config_xml_obj = $(config_xml_src:.xml.in=.xml) @@ -114,7 +114,7 @@ sonar: .PHONY: unused-imports unused-imports: - git ls-files *.py | xargs pylint | grep W0611 + @pylint --disable=all --enable=W0611 $(PYLINT_FILES) deb: dpkg-buildpackage -uc -us -tc -b |