Skip to content

Commit 603906d

Browse files
authored
Update python-stylecheck
More line length sync. Signed-off-by: Jonas Bardino <[email protected]>
1 parent 83d6591 commit 603906d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-stylecheck.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
python-root-list: ${{ env.CHANGED_FILES }}
2929
extra-pycodestyle-options: "--max-line-length=80"
3030
extra-black-options: "--line-length=80"
31-
extra-isort-options: "-m=HANGING_INDENT"
31+
extra-isort-options: "--line-length=80 -m=HANGING_INDENT"
3232
# NOTE: we disable flake8 and pylint here to avoid overlap with lint action and limit noise
3333
use-flake8: false
3434
extra-flake8-options: "--max-line-length=80"
3535
use-pylint: false
3636
# NOTE: pylint C0209 string format suggestions requires python3.6+ so disable here
3737
# https://pylint.pycqa.org/en/latest/user_guide/messages/convention/consider-using-f-string.html
38-
extra-pylint-options: "--disable=C0209"
38+
extra-pylint-options: "--max-line-length = 80 --disable=C0209"

0 commit comments

Comments
 (0)