qrusty 0.19.13

A trusty priority queue server built with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[mypy]
python_version = 3.12
strict = True
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
no_implicit_optional = True
show_error_codes = True
pretty = True

# We want strict checking for our code, but many third-party packages
# (e.g. doorstop) do not ship type hints.
[mypy-doorstop.*]
ignore_missing_imports = True

[mypy-yaml.*]
ignore_missing_imports = True