You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
381 B
TOML
21 lines
381 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
|
|
select = ["E", "F", "I"]
|
|
ignore = [ "E501" ]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_redundant_casts = true
|
|
disallow_untyped_calls = true
|
|
disallow_untyped_defs = true
|
|
no_implicit_optional = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "setuptools.*"
|
|
ignore_missing_imports = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "pytest.*"
|
|
ignore_missing_imports = true
|