We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48b6031 commit aca4863Copy full SHA for aca4863
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ jobs:
8
fail-fast: false
9
matrix:
10
command:
11
- - "ruff ."
+ - "ruff check ."
12
- "ruff format --check ws"
13
- "mypy ws"
14
- "pylint --jobs=0 ws"
Makefile
@@ -53,15 +53,15 @@ check: lint test
53
.PHONY: fix
54
fix: install-python-dev
55
poetry run ruff format .
56
- poetry run ruff --fix .
+ poetry run ruff check --fix .
57
58
.PHONY: lint
59
lint: lint-python typecheck-python lint-js
60
61
.PHONY: lint-python
62
lint-python: install-python-dev
63
poetry run ruff format --check .
64
- poetry run ruff .
+ poetry run ruff check .
65
poetry run pylint --jobs 0 ws # '0' tells pylint to auto-detect available processors
66
67
.PHONY: typecheck-python
0 commit comments