28 lines
426 B
INI
28 lines
426 B
INI
[yapf]
|
|
based_on_style = pep8
|
|
spaces_before_comment = 2
|
|
split_before_logical_operator = true
|
|
|
|
[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
|
|
|
|
[mypy]
|
|
explicit_package_bases = True
|
|
namespace_packages = True
|