feat(ruff.toml): ignore unused imports (F401) in __init__.py
This commit is contained in:
parent
7a0d00a071
commit
5d2db286ff
1 changed files with 3 additions and 0 deletions
|
|
@ -394,3 +394,6 @@ extend-ignore = [
|
|||
"PLW0603", # global-statement
|
||||
# "PLW1404", # implicit-str-concat
|
||||
]
|
||||
|
||||
[lint.per-file-ignores]
|
||||
"__init__.py" = ["F401"]
|
||||
|
|
|
|||
Reference in a new issue