Skip to content

Commit 67834ee

Browse files
Aviv Kellermarco-ippolito
Aviv Keller
authored andcommitted
build: print Running XYZ linter... for py and yml
PR-URL: #54386 Reviewed-By: Luigi Pinca <[email protected]>
1 parent 93ac799 commit 67834ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ lint-py-build:
15381538
ifneq ("","$(wildcard tools/pip/site-packages/ruff)")
15391539
# Lint the Python code with ruff.
15401540
lint-py:
1541-
tools/pip/site-packages/bin/ruff --version
1541+
$(info Running Python linter...)
15421542
tools/pip/site-packages/bin/ruff check .
15431543
else
15441544
lint-py:
@@ -1558,6 +1558,7 @@ lint-yaml-build:
15581558
# Lints the YAML files with yamllint.
15591559
lint-yaml:
15601560
@if [ -d "tools/pip/site-packages/yamllint" ]; then \
1561+
$(info Running YAML linter...) \
15611562
PYTHONPATH=tools/pip $(PYTHON) -m yamllint .; \
15621563
else \
15631564
echo 'YAML linting with yamllint is not available'; \

0 commit comments

Comments
 (0)