This commit is contained in:
Bagatur
2023-12-01 13:19:17 -08:00
parent 8cf4cb9e48
commit fdca983ebd
2 changed files with 17 additions and 0 deletions

View File

@@ -43,12 +43,21 @@ pytest-asyncio = "^0.21.1"
optional = true
dependencies = {}
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"D",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = [ "D" ]
[tool.mypy]
disallow_untyped_defs = "True"

View File

@@ -397,10 +397,18 @@ select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"D",
]
exclude = [
"tests/integration_tests/examples/non-utf8-encoding.py",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = [ "D" ]
[tool.mypy]
ignore_missing_imports = "True"