Increased max line length to 120

This commit is contained in:
Alexandru-Rudi Mățău 2020-04-26 15:21:38 +03:00
parent 24cb599f31
commit 0a7d7aebca
5 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ indent_size = 4
tab_width = 4
charset = utf-8
trim_trailing_whitespace = true
max_line_length = 100
max_line_length = 120
[*.rst]
tab_width = 4

View file

@ -4,7 +4,7 @@ ignore =
E722, # do not use bare except' (done by pylint)
W503, # line break before binary operator
E402, # module level import not at top of file (gtk stuff)
max-line-length = 100
max-line-length = 120
exclude = .venv,venv,.env,env
max-complexity = 15
accept-encodings = utf-8

View file

@ -1,5 +1,5 @@
[settings]
line_length = 100
line_length = 120
multi_line_output=0
skip=
application.py,

View file

@ -239,7 +239,7 @@ indent-after-paren=4
indent-string=' '
# Maximum number of characters on a single line.
max-line-length=100
max-line-length=120
# Maximum number of lines in a module
max-module-lines=1000

2
.yapf
View file

@ -1,6 +1,6 @@
[style]
based_on_style = pep8
column_limit = 100
column_limit = 120
align_closing_bracket_with_visual_indent = true
blank_line_before_class_docstring = true