From 70283f7d8d6c6d707fe489abb60e03cda48edc7a Mon Sep 17 00:00:00 2001 From: mauwii Date: Sun, 26 Feb 2023 22:11:11 +0100 Subject: [PATCH] increase line_length to 120 --- .editorconfig | 2 +- .flake8 | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 28e2100bab..0ded504342 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,7 +13,7 @@ trim_trailing_whitespace = true # Python [*.py] indent_size = 4 -max_line_length = 88 +max_line_length = 120 # css [*.css] diff --git a/.flake8 b/.flake8 index 81d8d82bfb..2159b9dcc6 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -max-line-length = 88 +max-line-length = 120 extend-ignore = # See https://github.com/PyCQA/pycodestyle/issues/373 E203, diff --git a/pyproject.toml b/pyproject.toml index a8aba32b90..6b866f80ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -161,7 +161,7 @@ target-version = ['py39'] atomic = true extend_skip_glob = ["scripts/orig_scripts/*"] filter_files = true -line_length = 88 +line_length = 120 profile = "black" py_version = 39 remove_redundant_aliases = true