Skip to content

Commit

Permalink
CI: fix max-line-length for pep8speak
Browse files Browse the repository at this point in the history
  • Loading branch information
skoudoro authored and WassCodeur committed Jul 13, 2024
1 parent 7651a24 commit cbcb941
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,26 @@ message: # Customize the comment made by the bot
header: "Hello @{name}, Thank you for updating!"
footer: "To test for issues locally, `pip install flake8` and then run `flake8 fury`."
no_errors: "Cheers! There are no style issues detected in this Pull Request. :beers: "

pycodestyle:
max-line-length: 88 # Default is 79 in PEP8
# ignore: # Errors and warnings to ignore
# - W391
# - E203
# exclude:
# - doc/examples
# - dipy/info.py
# - doc/conf.py
flake8: # Valid if scanner.linter is flake8
max-line-length: 88 # Default is 79 in PEP8
ignore: []
exclude: []
count: False
show-source: False
statistics: False
hang-closing: False
filename: []
select: []

only_mention_files_with_errors: True # If False, a separate status comment for each file is made.
descending_issues_order: False # If True, PEP8 issues in message will be displayed in descending order of line numbers in the file

0 comments on commit cbcb941

Please sign in to comment.