2021-10-14 14:49:35 +03:00
|
|
|
[flake8]
|
2022-03-30 20:26:36 +03:00
|
|
|
# ignore:
|
|
|
|
|
# D100 - Missing docstring in public module
|
|
|
|
|
# D101 - Missing docstring in public class
|
|
|
|
|
# D103 - Missing docstring in public function
|
2021-10-14 14:49:35 +03:00
|
|
|
filename = *.py
|
|
|
|
|
max-line-length = 160
|
2022-03-30 20:26:36 +03:00
|
|
|
ignore = E203,D100,D101,D103
|
2021-10-14 14:49:35 +03:00
|
|
|
max-parameters-amount = 8
|
|
|
|
|
show_source = True
|
|
|
|
|
docstring-convention = google
|
|
|
|
|
enable-extensions = G
|
|
|
|
|
|
|
|
|
|
[pydocstyle]
|
|
|
|
|
convention = google
|
|
|
|
|
|
|
|
|
|
[mypy]
|
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
disable_error_code = attr-defined
|
|
|
|
|
show_column_numbers = True
|
|
|
|
|
show_error_context = True
|
|
|
|
|
show_absolute_path = True
|
|
|
|
|
pretty = True
|