We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4dd1f commit 4439926Copy full SHA for 4439926
.github/workflows/style.yml
@@ -22,4 +22,4 @@ jobs:
22
poetry install
23
- name: Run
24
run: |
25
- poetry run poe style
+ poetry run poe style-check
pyproject.toml
@@ -77,6 +77,9 @@ flake8-bandit = ["-S311"]
77
isort = "isort --profile black -m 3 ."
78
autoflake = "autoflake --recursive --in-place --remove-unused-variables ."
79
black = "black --line-length=79 ."
80
+isort-check = "isort --profile black -m 3 --check-only ."
81
+black-check = "black --check --line-length=79 ."
82
+style-check = ["isort-check", "black-check"]
83
style = ["isort", "autoflake", "black"]
84
lint = "flakehell lint"
85
test = "pytest"
0 commit comments