Skip to content

Commit

Permalink
lint: set max-line-length=130 for pylint
Browse files Browse the repository at this point in the history
Many lines in existing code are longer than 100 chars and attempts
to shorten them provoked by pylint usually result in less readable
code.

Closes: #140
  • Loading branch information
kdudka committed Nov 16, 2023
1 parent 53157f1 commit 9ff5749
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[FORMAT]

# increase threshold to eliminate C0301 warnings about lines exceeding 100 chars
max-line-length=130

0 comments on commit 9ff5749

Please sign in to comment.