1
0
mirror of synced 2025-12-31 15:03:11 -05:00
Files
airbyte/tools/python/.mypy.ini
Christophe Duong bb4dcb1987 🎉 Remove hash when it is not necessary from normalization outputs (#3704)
* Refactor `generate_new_table_name` using a table name registry class instead

* update normalization docs

* Enable MyPy

* Regenerate output files

* Closes https://github.com/airbytehq/airbyte/issues/2389

* Bumpversion normalization
2021-06-01 17:07:22 +02:00

36 lines
641 B
INI

[mypy]
# Optionals
no_implicit_optional = True
ignore_missing_imports = 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