poker-ranking-service/setup.cfg

37 lines
628 B
INI
Raw Normal View History

2022-11-18 13:27:10 +00:00
[coverage:run]
data_file = tests/.coverage
relative_files = True
[coverage:report]
precision = 1
skip_empty = True
show_missing = True
2022-11-18 13:18:07 +00:00
[flake8]
max-line-length = 88
ignore =
E203 W503
per-file-ignores =
*__init__.py:F401
tests/*:D,FS003
exclude =.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,*.cache,*.local
multi_line_output = 3
[pydocstyle]
ignore=D100,D104,D107,D203,D213,D406,D407,D413
[mypy]
pretty = True
strict = True
show_error_codes = True
warn_unreachable = True
2022-11-18 13:15:13 +00:00
[tool:pytest]
addopts = --verbose
testpaths = tests
2022-11-18 13:18:07 +00:00
[isort]
profile = black
multi_line_output = 3
skip_glob =*/.cache/*,*/.local/*