refactor: Ignore ISC001 as covered by formatter
This commit is contained in:
parent
4427f19403
commit
4bf4af2846
|
@ -73,6 +73,10 @@ lint.select = [
|
|||
"PERF", # perflint
|
||||
"UP", # pyupgrade
|
||||
]
|
||||
lint.ignore = [
|
||||
# Covered by formatter
|
||||
"ISC001" # single-line-implicit-string-concatenation
|
||||
]
|
||||
lint.isort.required-imports = [
|
||||
"from __future__ import annotations",
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue