increase line_length to 120

This commit is contained in:
mauwii 2023-02-26 22:11:11 +01:00
parent 8dc56471ef
commit 70283f7d8d
No known key found for this signature in database
GPG Key ID: D923DB04ADB3F5AB
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ trim_trailing_whitespace = true
# Python # Python
[*.py] [*.py]
indent_size = 4 indent_size = 4
max_line_length = 88 max_line_length = 120
# css # css
[*.css] [*.css]

View File

@ -1,5 +1,5 @@
[flake8] [flake8]
max-line-length = 88 max-line-length = 120
extend-ignore = extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373 # See https://github.com/PyCQA/pycodestyle/issues/373
E203, E203,

View File

@ -161,7 +161,7 @@ target-version = ['py39']
atomic = true atomic = true
extend_skip_glob = ["scripts/orig_scripts/*"] extend_skip_glob = ["scripts/orig_scripts/*"]
filter_files = true filter_files = true
line_length = 88 line_length = 120
profile = "black" profile = "black"
py_version = 39 py_version = 39
remove_redundant_aliases = true remove_redundant_aliases = true