diff options
| author | 2021-10-16 15:37:08 +0100 | |
|---|---|---|
| committer | 2021-10-16 15:37:08 +0100 | |
| commit | 3ce7fc3eac652b6ee51889218600c7de8e298140 (patch) | |
| tree | 8a07d86f39fa9c83b2202ecb5af7345d20bbbaae /pyproject.toml | |
| parent | Do not try to calculate expiry if infraction is permanent on reapply (diff) | |
| parent | Merge pull request #1872 from python-discord/experiments/isort (diff) | |
Merge branch 'main' into ks123/bugfix/reapply-infraction
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 4431a41c5..515514c7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,10 +38,10 @@ flake8 = "~=3.8" flake8-annotations = "~=2.0" flake8-bugbear = "~=20.1" flake8-docstrings = "~=1.4" -flake8-import-order = "~=0.18" flake8-string-format = "~=0.2" flake8-tidy-imports = "~=4.0" flake8-todo = "~=0.7" +flake8-isort = "~=4.0" pep8-naming = "~=0.9" pre-commit = "~=2.1" taskipy = "~=1.7.0" @@ -66,8 +66,17 @@ test = "pytest -n auto --cov-report= --cov --ff" retest = "pytest -n auto --cov-report= --cov --lf" html = "coverage html" report = "coverage report" +isort = "isort ." [tool.coverage.run] branch = true source_pkgs = ["bot"] source = ["tests"] + +[tool.isort] +multi_line_output = 6 +order_by_type = false +case_sensitive = true +combine_as_imports = true +line_length = 120 +atomic = true |