mirror of
https://github.com/lutris/lutris
synced 2024-11-02 08:20:51 +00:00
Increased max line length to 120
This commit is contained in:
parent
24cb599f31
commit
0a7d7aebca
5 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
2
.flake8
2
.flake8
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[settings]
|
||||
line_length = 100
|
||||
line_length = 120
|
||||
multi_line_output=0
|
||||
skip=
|
||||
application.py,
|
||||
|
|
|
@ -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
2
.yapf
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue