2021-06-17 12:51:09 +00:00
|
|
|
[yapf]
|
|
|
|
based_on_style = pep8
|
|
|
|
spaces_before_comment = 2
|
|
|
|
split_before_logical_operator = true
|
2022-01-11 17:28:50 +00:00
|
|
|
|
|
|
|
[pylint]
|
|
|
|
disable =
|
|
|
|
too-many-arguments,
|
|
|
|
too-few-public-methods,
|
|
|
|
fixme,
|
|
|
|
|
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
max-line-length = 79
|
|
|
|
|
|
|
|
[isort]
|
|
|
|
profile = hug
|
|
|
|
src_paths = isort, test
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = True
|
|
|
|
force_grid_wrap = 3
|
|
|
|
use_parentheses = True
|
|
|
|
line_length = 79
|
2023-03-02 17:23:41 +00:00
|
|
|
|
|
|
|
[mypy]
|
|
|
|
explicit_package_bases = True
|
|
|
|
namespace_packages = True
|