aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar TizzySaurus <[email protected]>2021-11-01 21:32:37 +0000
committerGravatar GitHub <[email protected]>2021-11-01 21:32:37 +0000
commit872185c7ad1597c54c748feaf8cd2d1772100c69 (patch)
treef1d102f4b35083eb0b1a707980530fd82c828a95 /pyproject.toml
parentAddress Reviews V2 (diff)
parentMerge pull request #931 from hedyhli/candy (diff)
Merge branch 'main' into reorder-hacktoberfest-commandsreorder-hacktoberfest-commands
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml14
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"]