diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 08287b23..91dd65fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,12 +26,12 @@ flake8 = "~=3.8" flake8-annotations = "~=2.3" flake8-bugbear = "~=20.1" flake8-docstrings = "~=1.5" -flake8-import-order = "~=0.18" flake8-string-format = "~=0.3" flake8-tidy-imports = "~=4.1" flake8-todo = "~=0.7" +flake8-isort = "~=4.0" pep8-naming = "~=0.11" -pip-licenses = "~=3.5.2" +pip-licenses = "~=3.5" pre-commit = "~=2.1" python-dotenv = "~=0.15" taskipy = "~=1.6" @@ -40,7 +40,17 @@ taskipy = "~=1.6" start = "python -m bot" lint = "pre-commit run --all-files" precommit = "pre-commit install" +isort = "isort ." [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" + +[tool.isort] +multi_line_output = 6 +order_by_type = false +case_sensitive = true +combine_as_imports = true +line_length = 120 +atomic = true +known_first_party = ["bot"] |