2021-10-30 00:37:44 -04:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
2021-10-30 16:24:01 -04:00
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 79
|
|
|
|
|
target-version = ["py38"]
|
|
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
line_length = 79
|
|
|
|
|
profile = "black"
|
|
|
|
|
multi_line_output = 3
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
check_untyped_defs = true
|
|
|
|
|
disallow_any_generics = true
|
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
|
disallow_subclassing_any = true
|
|
|
|
|
disallow_untyped_calls = true
|
|
|
|
|
disallow_untyped_decorators = true
|
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
|
no_implicit_optional = true
|
|
|
|
|
no_implicit_reexport = true
|
|
|
|
|
show_error_context = true
|
|
|
|
|
warn_redundant_casts = true
|
|
|
|
|
warn_return_any = true
|
|
|
|
|
warn_unused_configs = true
|
|
|
|
|
warn_unused_ignores = true
|
|
|
|
|
exclude = []
|
|
|
|
|
|
|
|
|
|
[tool.pylint."MESSAGES CONTROL"]
|
2021-10-31 12:18:55 -04:00
|
|
|
disable = [
|
|
|
|
|
"invalid-name",
|
2021-11-03 02:30:45 -04:00
|
|
|
"missing-class-docstring",
|
|
|
|
|
"missing-function-docstring",
|
|
|
|
|
"missing-module-docstring",
|
2021-10-31 12:18:55 -04:00
|
|
|
]
|
2022-02-21 19:17:42 -05:00
|
|
|
min-similarity-lines = 7
|