mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:59:10 +00:00
16 lines
364 B
TOML
16 lines
364 B
TOML
[tool.mypy]
|
|
ignore_missing_imports = true
|
|
disallow_any_generics = true
|
|
no_implicit_optional = true
|
|
pretty = true
|
|
show_column_numbers = true
|
|
warn_redundant_casts = true
|
|
warn_return_any = true
|
|
warn_unreachable = true
|
|
namespace_packages = true
|
|
explicit_package_bases = true
|
|
exclude = ["thirdparty/"]
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
extend-exclude = ".*thirdparty/.*"
|