File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ lint-fix:
117117 python3 -c " import black" > /dev/null 2>&1 || python3 -m pip install black
118118 python3 -m black .
119119 python3 -c " import ruff" > /dev/null 2>&1 || python3 -m pip install ruff
120- python3 -m ruff --fix .
120+ python3 -m ruff check --fix .
121121
122122.PHONY : mypy
123123mypy :
Original file line number Diff line number Diff line change @@ -97,9 +97,13 @@ config-settings = "raqm=enable raqm=vendor fribidi=vendor imagequant=disable"
9797test-command = " cd {project} && .github/workflows/wheels-test.sh"
9898test-extras = " tests"
9999
100+ [tool .black ]
101+ exclude = " wheels/multibuild"
102+
100103[tool .ruff ]
101- fix = true
104+ exclude = [ " wheels/multibuild " ]
102105
106+ fix = true
103107lint.select = [
104108 " C4" , # flake8-comprehensions
105109 " E" , # pycodestyle errors
You can’t perform that action at this time.
0 commit comments