refactor: Ignore ISC001 as covered by formatter

This commit is contained in:
Kieran Ryan 2025-01-01 21:44:01 +00:00
parent 4427f19403
commit 4bf4af2846
1 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,10 @@ lint.select = [
"PERF", # perflint "PERF", # perflint
"UP", # pyupgrade "UP", # pyupgrade
] ]
lint.ignore = [
# Covered by formatter
"ISC001" # single-line-implicit-string-concatenation
]
lint.isort.required-imports = [ lint.isort.required-imports = [
"from __future__ import annotations", "from __future__ import annotations",
] ]