mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-10 15:10:54 +00:00
toml bools should be lowercase w/o quotes
This commit is contained in:
@ -1,32 +1,32 @@
|
|||||||
[tool.autoflake]
|
[tool.autoflake]
|
||||||
remove_all_unused_imports = "True"
|
remove_all_unused_imports = true
|
||||||
exclude = "__init__.py"
|
exclude = "__init__.py"
|
||||||
|
|
||||||
[tool.isort]
|
[tool.isort]
|
||||||
combine_as_imports = "True"
|
combine_as_imports = true
|
||||||
extra_standard_library = "pytest"
|
extra_standard_library = "pytest"
|
||||||
force_grid_wrap = 1
|
force_grid_wrap = 1
|
||||||
force_sort_within_sections = "True"
|
force_sort_within_sections = true
|
||||||
known_third_party = "hypothesis,pytest"
|
known_third_party = "hypothesis,pytest"
|
||||||
known_first_party = "<MODULE_NAME>"
|
known_first_party = "<MODULE_NAME>"
|
||||||
multi_line_output = 3
|
multi_line_output = 3
|
||||||
profile = "black"
|
profile = "black"
|
||||||
|
|
||||||
[tool.mypy]
|
[tool.mypy]
|
||||||
check_untyped_defs = "True"
|
check_untyped_defs = true
|
||||||
disallow_incomplete_defs = "True"
|
disallow_incomplete_defs = true
|
||||||
disallow_untyped_defs = "True"
|
disallow_untyped_defs = true
|
||||||
disallow_any_generics = "True"
|
disallow_any_generics = true
|
||||||
disallow_untyped_calls = "True"
|
disallow_untyped_calls = true
|
||||||
disallow_untyped_decorators = "True"
|
disallow_untyped_decorators = true
|
||||||
disallow_subclassing_any = "True"
|
disallow_subclassing_any = true
|
||||||
ignore_missing_imports = "True"
|
ignore_missing_imports = true
|
||||||
strict_optional = "True"
|
strict_optional = true
|
||||||
strict_equality = "True"
|
strict_equality = true
|
||||||
warn_redundant_casts = "True"
|
warn_redundant_casts = true
|
||||||
warn_return_any = "True"
|
warn_return_any = true
|
||||||
warn_unused_configs = "True"
|
warn_unused_configs = true
|
||||||
warn_unused_ignores = "True"
|
warn_unused_ignores = true
|
||||||
|
|
||||||
|
|
||||||
[tool.pydocstyle]
|
[tool.pydocstyle]
|
||||||
@ -63,7 +63,7 @@ add-ignore = "D200,D203,D204,D205,D212,D302,D400,D401,D412,D415"
|
|||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
addopts = "-v --showlocals --durations 10"
|
addopts = "-v --showlocals --durations 10"
|
||||||
xfail_strict = "True"
|
xfail_strict = true
|
||||||
log_format = "%(levelname)8s %(asctime)s %(filename)20s %(message)s"
|
log_format = "%(levelname)8s %(asctime)s %(filename)20s %(message)s"
|
||||||
log_date_format = "%m-%d %H:%M:%S"
|
log_date_format = "%m-%d %H:%M:%S"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user