Skip to content

Commit

Permalink
Increase max line length for linters (#4369)
Browse files Browse the repository at this point in the history
- Increase max line length allowed by linting tools


[Some precedents established by
others](https://knox.codes/posts/line-length-limits)
  • Loading branch information
ivan-c committed Mar 14, 2024
1 parent 851cf44 commit f75d14c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[*.py]
# isort settings
# https://github.com/timothycrosley/isort/wiki/isort-Settings
line_length=79
line_length=100
multi_line_output=3
include_trailing_comma=True
known_first_party=tests
Expand Down
3 changes: 1 addition & 2 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# https://pep8speaks.com/

pycodestyle:
# Default is 79 in PEP8
max-line-length: 79
max-line-length: 100

scanner:
# Errors caused by only the patch are shown, not the whole file
Expand Down

0 comments on commit f75d14c

Please sign in to comment.