We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d6591 commit 603906dCopy full SHA for 603906d
.github/workflows/python-stylecheck.yml
@@ -28,11 +28,11 @@ jobs:
28
python-root-list: ${{ env.CHANGED_FILES }}
29
extra-pycodestyle-options: "--max-line-length=80"
30
extra-black-options: "--line-length=80"
31
- extra-isort-options: "-m=HANGING_INDENT"
+ extra-isort-options: "--line-length=80 -m=HANGING_INDENT"
32
# NOTE: we disable flake8 and pylint here to avoid overlap with lint action and limit noise
33
use-flake8: false
34
extra-flake8-options: "--max-line-length=80"
35
use-pylint: false
36
# NOTE: pylint C0209 string format suggestions requires python3.6+ so disable here
37
# https://pylint.pycqa.org/en/latest/user_guide/messages/convention/consider-using-f-string.html
38
- extra-pylint-options: "--disable=C0209"
+ extra-pylint-options: "--max-line-length = 80 --disable=C0209"
0 commit comments