2025-02-13 14:48:46 +01:00
|
|
|
[mypy]
|
|
|
|
disallow_untyped_calls = False
|
|
|
|
no_implicit_optional = True
|
|
|
|
|
|
|
|
[mypy-sqlglot.*]
|
2025-02-13 14:53:05 +01:00
|
|
|
ignore_errors = False
|
2025-02-13 14:48:46 +01:00
|
|
|
|
|
|
|
[mypy-sqlglot.dataframe.*]
|
|
|
|
ignore_errors = False
|
|
|
|
|
|
|
|
[mypy-tests.*]
|
|
|
|
ignore_errors = True
|
|
|
|
|
|
|
|
[mypy-tests.dataframe.*]
|
|
|
|
ignore_errors = False
|
2025-02-13 14:53:05 +01:00
|
|
|
|
|
|
|
[autoflake]
|
|
|
|
in-place = True
|
|
|
|
expand-star-imports = True
|
|
|
|
remove-all-unused-imports = True
|
|
|
|
ignore-init-module-imports = True
|
|
|
|
remove-duplicate-keys = True
|
|
|
|
remove-unused-variables = True
|
|
|
|
quiet = True
|
|
|
|
|
|
|
|
[isort]
|
|
|
|
profile=black
|
|
|
|
known_first_party=sqlglot
|