2023-06-08 21:43:56 +00:00
|
|
|
# This extend our general Ruff rules specifically for tests
|
|
|
|
extend = "../pyproject.toml"
|
|
|
|
|
2024-04-08 13:43:58 +00:00
|
|
|
[lint]
|
|
|
|
extend-ignore = [
|
|
|
|
"INP001", # File is part of an implicit namespace package. Add an `__init__.py`.
|
|
|
|
]
|
|
|
|
|
2024-02-06 14:41:34 +00:00
|
|
|
[lint.isort]
|
2023-06-08 21:43:56 +00:00
|
|
|
known-third-party = [
|
|
|
|
"pylint",
|
2024-02-06 14:41:34 +00:00
|
|
|
]
|