We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ef55d0 + d92cdb8 commit 761dce7Copy full SHA for 761dce7
{{cookiecutter.package_name}}/Makefile
@@ -94,6 +94,7 @@ format:
94
.PHONY: check-format
95
check-format:
96
@hatch run style:run-black-check
97
+ @hatch run style:run-flake8
98
99
100
# help: sort-imports - apply import sort ordering
{{cookiecutter.package_name}}/pyproject.toml
@@ -135,7 +135,7 @@ extra-dependencies = [
135
]
136
137
[tool.hatch.envs.style.scripts]
138
-run-flake8 = "flake8 --ignore=E203,W503 src tests"
+run-flake8 = "flake8 src tests"
139
run-isort = "isort src tests --profile black"
140
run-isort-check = "run-isort --check-only"
141
run-black = "black examples src tests"
0 commit comments