mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-12 15:27:14 +03:00
We'd been using `skip` because when we started with mypy next to nothing passed it, and checking one file would spew errors with other files and it just wasn't conducive to making at least *some* progress. But now we should have every single file passing, so this is the right thing to do.
11 lines
269 B
INI
11 lines
269 B
INI
[mypy]
|
|
follow_imports = normal
|
|
ignore_missing_imports = True
|
|
scripts_are_modules = True
|
|
; Without this bare `mypy <file>` may get warnings for e.g.
|
|
; `<var> = <value>`
|
|
; i.e. no typing info.
|
|
check_untyped_defs = True
|
|
; platform = darwin
|
|
explicit_package_bases = True
|