From b6efc15a9118dec48f14fcbc4202e2c2ea740266 Mon Sep 17 00:00:00 2001 From: Mufeed Ali Date: Mon, 8 May 2023 22:37:38 +0530 Subject: [PATCH] formatting: Update configuration --- pyproject.toml | 9 +++++++++ setup.cfg | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c947583 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[tool.isort] +profile = "black" +line_length = 120 + +[tool.pylint.format] +max-line-length = 120 + +[tool.black] +line-length = 120 diff --git a/setup.cfg b/setup.cfg index e9e7142..f2707b1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,14 +1,14 @@ [flake8] -max-line-length = 88 +max-line-length = 120 extend-ignore = E203 exclude = build-aux/flatpak max-complexity = 15 [pycodestyle] -max-line-length = 88 +max-line-length = 120 [pylama:pycodestyle] -max_line_length = 88 +max_line_length = 120 [pydocstyle] match = '(?!test_).*\.py'