Skip to content

Commit c3a45e8

Browse files
authored
chore(lint): address ruff deprecation warnings (#118)
Signed-off-by: Mike Fiedler <[email protected]>
1 parent 31834db commit c3a45e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $(VENV)/pyvenv.cfg: pyproject.toml
5757
lint: $(VENV)/pyvenv.cfg
5858
. $(VENV_BIN)/activate && \
5959
black --check $(ALL_PY_SRCS) && \
60-
ruff $(ALL_PY_SRCS) && \
60+
ruff check $(ALL_PY_SRCS) && \
6161
mypy $(PY_MODULE)
6262

6363
.PHONY: reformat

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ warn_unused_ignores = true
6161
line-length = 100
6262

6363
[tool.ruff]
64-
select = ["E", "F", "I", "W", "UP"]
64+
lint.select = ["E", "F", "I", "W", "UP"]
6565
target-version = "py37"
6666
line-length = 100

0 commit comments

Comments
 (0)