We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f7c68f commit 93c88caCopy full SHA for 93c88ca
Makefile
@@ -8,9 +8,9 @@ test-with-coverage:
8
9
.PHONY: lint
10
lint:
11
- black src/ tests.py
12
- isort --profile=black src/ tests.py
13
- flake8 src/ tests.py
+ ruff check --select I --fix src/ tests.py
+ ruff format src/ tests.py
+ ruff check src/ tests.py
14
mypy --strict src/ tests.py
15
16
.PHONY: html-docs
requirements-dev.txt
@@ -1,6 +1,4 @@
1
-black
2
-flake8
3
-isort
+ruff
4
mypy
5
pytest
6
pytest-cov
setup.cfg
0 commit comments