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.
ruff check $FILES
ruff $FILES
1 parent 046a271 commit 6e492eaCopy full SHA for 6e492ea
{{cookiecutter.project_slug}}/Makefile
@@ -61,7 +61,7 @@ $(VENV)/pyvenv.cfg: pyproject.toml
61
lint: $(VENV)/pyvenv.cfg
62
. $(VENV_BIN)/activate && \
63
ruff format --check $(ALL_PY_SRCS) && \
64
- ruff $(ALL_PY_SRCS) && \
+ ruff check $(ALL_PY_SRCS) && \
65
mypy
66
67
{%- if cookiecutter.docstring_coverage %}
@@ -72,7 +72,7 @@ lint: $(VENV)/pyvenv.cfg
72
.PHONY: reformat
73
reformat:
74
75
- ruff --fix $(ALL_PY_SRCS) && \
+ ruff check --fix $(ALL_PY_SRCS) && \
76
ruff format $(ALL_PY_SRCS)
77
78
.PHONY: test tests
0 commit comments