diff --git a/pyproject.toml b/pyproject.toml index f3026be..b9dc302 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,8 +56,25 @@ pre-commit = [ "autohooks.plugins.pylint" ] +[tool.black] +line-length = 80 +target-version = ['py37', 'py38', 'py39', 'py310', 'py311'] +exclude = ''' +/( + \.git + | \.venv + | \.github + | \.vscode + | _build + | build + | dist + | docs +)/ +''' + [tool.isort] profile = "black" +line_length = 80 [tool.pontos.version] version-module-file = "autohooks/plugins/mypy/__version__.py"