mirror of
https://github.com/Mic92/nix-update.git
synced 2024-11-03 21:04:49 +03:00
22 lines
424 B
TOML
22 lines
424 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
|
|
# Enable Pyflakes `E` and `F` codes by default.
|
|
select = ["E", "F"]
|
|
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
|