ayon-core/setup.cfg
Ondřej Samohel 41845651b2
Update setup.cfg
Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
2023-09-20 14:38:35 +02:00

38 lines
578 B
INI

[flake8]
# ignore = D203
ignore = BLK100, W504, W503
max-line-length = 79
exclude =
.git,
__pycache__,
docs,
*/vendor,
website,
openpype/vendor,
*deadline/repository/custom/plugins
max-complexity = 30
[pylint.'MESSAGES CONTROL']
disable = no-member
[pydocstyle]
convention = google
ignore = D107
[coverage:run]
branch = True
omit = /tests
[coverage:html]
directory = ./coverage
[tool:pytest]
norecursedirs = openpype/modules/ftrack/*
[isort]
line_length = 79
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True