Skip to content

Commit

Permalink
Merge pull request #175 from JureZmrzlikar/line120
Browse files Browse the repository at this point in the history
linters: Set line length to 119
  • Loading branch information
tomazc committed Mar 5, 2018
2 parents 7512342 + 89a4cf0 commit 1997429
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ generated-members=
[FORMAT]

# Maximum number of characters on a single line.
max-line-length=99
max-line-length=119

# Regexp for a line that is allowed to be longer than the limit.
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
Expand Down
2 changes: 1 addition & 1 deletion docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Conventions
Syntax
------

* Line length is 99 characters plus newline character.
* Line length is 119 characters plus newline character.
* Use ``'`` instead of ``"`` character, if possible.

Parameters naming
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
python-tag = py34,py35

[pycodestyle]
max-line-length=99
max-line-length=119
ignore=E127, E402
# E127: continuation line over-indented for visual indent (checked by pylint)
# E402: module level import not at top of file (checked by pylint)
Expand Down

0 comments on commit 1997429

Please sign in to comment.