Skip to content

Commit

Permalink
Merge pull request #10 from Cosmian/fix-linter
Browse files Browse the repository at this point in the history
Fix: re-introduce setup.cfg for pycodestyle not supporting PEP-621
  • Loading branch information
grydz authored Apr 2, 2024
2 parents 84411ce + 326131e commit 1c90603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Lint check with pycodestyle
run: |
python -m pycodestyle --max-line-length=90 --ignore=E203,W503 $PYTHON_SRC
python -m pycodestyle $PYTHON_SRC
- name: Lint check with pydocstyle
run: |
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pycodestyle]
max-line-length = 90
ignore = E203,W503

0 comments on commit 1c90603

Please sign in to comment.