mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 20:49:10 +01:00
21 lines
633 B
INI
21 lines
633 B
INI
|
[mypy]
|
||
|
# Check Python 2 code for type annotations in comments.
|
||
|
python_version = 2.7
|
||
|
|
||
|
[mypy-*]
|
||
|
disallow_untyped_defs = False
|
||
|
# Do not error on imported files since all imported files may not be mypy clean.
|
||
|
follow_imports = silent
|
||
|
# Do not error if imports are not found.
|
||
|
# This can be a problem with standalone scripts and relative imports.
|
||
|
# This will limit effectiveness but avoids mypy complaining about running code.
|
||
|
ignore_missing_imports = True
|
||
|
|
||
|
[mypy-idl*]
|
||
|
# Error if any code is missing type annotations.
|
||
|
disallow_untyped_defs = True
|
||
|
|
||
|
[mypy-lint*]
|
||
|
# Error if any code is missing type annotations.
|
||
|
disallow_untyped_defs = True
|