stylo/pyproject.toml

27 lines
424 B
TOML

[tool.pylint.messages_control]
max-line-length = 80
disable = [
"fixme",
"invalid-name",
"missing-docstring",
"too-few-public-methods",
"duplicate-code"
]
[tool.isort]
profile = "black"
src_paths = ["stylo", "tests", "noxfile.py"]
[tool.mypy]
strict = true
files = "stylo/**/*.py,tests/**/*.py,noxfile.py"
ignore_missing_imports = true
[tool.pylint]
max-line-length = 110
[tool.pytest.ini_options]
log_cli=1