From 45ca04b2f41dc75491adb4d1808fbe50eb497d9f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 21:00:29 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/tox-dev/pyproject-fmt: 1.3.0 → 1.4.1](https://github.com/tox-dev/pyproject-fmt/compare/1.3.0...1.4.1) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b49c4136..015a6fd9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,7 +25,7 @@ repos: - id: pyupgrade args: [--keep-runtime-typing] - repo: https://github.com/tox-dev/pyproject-fmt - rev: 1.3.0 + rev: 1.4.1 hooks: - id: pyproject-fmt - repo: https://github.com/pre-commit/mirrors-mypy From 27c622e132d2b9979704cbb9e10ade36902ea71e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 21:00:45 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ef119ca8..43656a7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,6 +71,23 @@ profile = "black" [tool.flake8] max-line-length = 120 +[tool.pylint.format] +max-line-length = 120 + +[tool.pylint.messages_control] +disable = """ + E0012, + E0401, + R0201, + R0801, +""" + +[tool.pylint.reports] +output-format = "colorized" + +[tool.pylint.main] +fail-under = 9.8 + [tool.pytest.ini_options] addopts = "--doctest-modules --cov" @@ -93,20 +110,3 @@ fail_under = 80 [tool.mypy] ignore_missing_imports = true - -[tool.pylint.format] -max-line-length = 120 - -[tool.pylint.messages_control] -disable = """ - E0012, - E0401, - R0201, - R0801, -""" - -[tool.pylint.reports] -output-format = "colorized" - -[tool.pylint.main] -fail-under = 9.8