prometheus-pve-sd/setup.cfg

23 lines
692 B
INI
Raw Normal View History

2021-06-09 20:44:10 +02:00
[flake8]
# Explanation of errors
#
# D102: Missing docstring in public method
# D103: Missing docstring in public function
2021-06-09 20:56:20 +02:00
# D105: Missing docstring in magic method
2021-06-09 20:44:10 +02:00
# D107: Missing docstring in __init__
# D202: No blank lines allowed after function docstring
# W503:Line break occurred before a binary operator
2021-06-09 20:56:20 +02:00
ignore = D102, D103, D105, D107, D202, W503
2021-06-09 20:44:10 +02:00
max-line-length = 99
inline-quotes = double
exclude = .git, __pycache__, build, dist, *.pyc, *.egg-info, .cache, .eggs, env*
2021-06-09 20:44:10 +02:00
[yapf]
based_on_style = google
column_limit = 99
dedent_closing_brackets = true
coalesce_brackets = true
split_before_logical_operator = true
indent_dictionary_value = true
allow_split_before_dict_value = false