From b6767786260bb1bc818f30322f2824a60466da78 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Fri, 11 Oct 2024 23:12:00 +0300 Subject: [PATCH] chore: tweak ruff rules --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4cf7b7edc..9325fbb35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,7 @@ ignore = [ "D203", # One blank line required before class docstring "D213", # Multi-line docstring summary should start at the second line "D400", # First line should end with a period (duplicates D415) + "ISC001", # Checks for implicitly concatenated strings on a single line # Remove these when support for Python 3.8 is dropped: "UP006", # Use `xyz` instead of `Xyz` for type annotation