From f4acb49ea148cdd899f7f29f1591c7bc853c2135 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 03:03:18 +0200 Subject: Adding upstream version 1:2.12.0. Signed-off-by: Daniel Baumann --- pyproject.toml | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index 2581528..83d0112 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,28 @@ -[tool.black] +[tool.ruff] line-length = 79 -target-version = ["py34", "py35", "py36", "py37", "py38"] +target-version = "py37" +lint.select = ["E", "F", "B"] +lint.ignore = [ + # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules + # (keep order of ignores here same as ^there for maintainability) + "W191", + "E111", + "E114", + "E117", + "D206", + "D300", + "Q000", + "Q001", + "Q002", + "Q003", + "COM812", + "COM819", + "ISC001", + "ISC002", + "E501", +] +fix = true + +[tool.ruff.lint.isort] +known-first-party = ["conftest"] +known-third-party = ["pexpect", "pytest"] -- cgit v1.2.3