We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Running XYZ linter...
1 parent a97841e commit 7861ca5Copy full SHA for 7861ca5
Makefile
@@ -1543,7 +1543,7 @@ lint-py-build:
1543
ifneq ("","$(wildcard tools/pip/site-packages/ruff)")
1544
# Lint the Python code with ruff.
1545
lint-py:
1546
- tools/pip/site-packages/bin/ruff --version
+ $(info Running Python linter...)
1547
tools/pip/site-packages/bin/ruff check .
1548
else
1549
@@ -1563,6 +1563,7 @@ lint-yaml-build:
1563
# Lints the YAML files with yamllint.
1564
lint-yaml:
1565
@if [ -d "tools/pip/site-packages/yamllint" ]; then \
1566
+ $(info Running YAML linter...) \
1567
PYTHONPATH=tools/pip $(PYTHON) -m yamllint .; \
1568
else \
1569
echo 'YAML linting with yamllint is not available'; \
0 commit comments