* 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
36 lines
641 B
INI
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
|