1
0
mirror of synced 2026-01-19 18:07:00 -05:00
Files
airbyte/tools/python/.mypy.ini
Jared Rhizor b34d559df3 Python Developer Experience (#684)
* add symlinks for intellij includes

* add python support for exchangerate

* add python support for other modules

* get working across all projects

* add pydantic deps

* revert testing code

* mypy

* use python 3.7 in github actions

* remove unused envs plugin

* increase line length

* increase line length to 140 (run formatting)

* don't ignore most init.py

* does this happen to work on github actions?

* try to fix generation

* try to have GA chown

* exclude re-generation
2020-10-23 12:43:18 -07:00

35 lines
611 B
INI

[mypy]
# Optionals
no_implicit_optional = True
# Strictness
allow_untyped_globals = False
allow_redefinition = False
implicit_reexport = False
strict_equality = True
# Warnings
warn_unused_ignores = True
warn_no_return = True
warn_return_any = True
warn_redundant_casts = True
warn_unreachable = True
# Error output
show_column_numbers = True
show_error_context = True
show_error_codes = True
show_traceback = True
pretty = True
color_output = True
error_summary = True
[mypy-colors]
ignore_missing_imports = True
[mypy-translate]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True