You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
789 B
24 lines
789 B
[flake8] |
|
# Explanation of errors |
|
# |
|
# D100: Missing docstring in public module |
|
# D101: Missing docstring in public class |
|
# D102: Missing docstring in public method |
|
# D103: Missing docstring in public function |
|
# D105: Missing docstring in magic method |
|
# D107: Missing docstring in __init__ |
|
# D202: No blank lines allowed after function docstring |
|
# W503:Line break occurred before a binary operator |
|
ignore = D100, D101, D102, D103, D107, D202, W503 |
|
max-line-length = 99 |
|
inline-quotes = double |
|
exclude = .git, __pycache__, build, dist, test, *.pyc, *.egg-info, .cache, .eggs, env* |
|
|
|
[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
|
|
|