diff options
| author | 2021-11-07 15:09:14 +0000 | |
|---|---|---|
| committer | 2021-11-07 15:09:14 +0000 | |
| commit | cfd5d2a543dbf9bd69be5aab20ac32ebe4fd6b64 (patch) | |
| tree | 35913fd3a642a75e84929f0d8534c50eab3b659c /pyproject.toml | |
| parent | Add a border around the scary bat (diff) | |
| parent | Handle `.wtf` command without query (#939) (diff) | |
Merge branch 'main' into Add-border-around-bat
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"] |