Skip to content

Commit

Permalink
removed isort.cfg & integrated it into pyproject.toml (#722)
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <lukas.heumos@posteo.net>
  • Loading branch information
Zethson authored Jun 21, 2021
1 parent 5396c65 commit 0cee5c2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .isort.cfg

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ show_error_codes = true
show_error_context = true
ignore_missing_imports = true

[tool.isort]
multi_line_output=3
include_trailing_comma=true
balanced_wrapping=true
line_length=120

[tool.coverage.paths]
source = ["{{ cookiecutter.project_slug_no_hyphen }}", "*/site-packages"]

Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ show_error_context = true
ignore_missing_imports = true
exclude = "templates"

[tool.isort]
multi_line_output=3
include_trailing_comma=true
balanced_wrapping=true
line_length=120
skip="templates"

[tool.coverage.paths]
source = ["cookietemple", "*/site-packages"]

Expand Down

0 comments on commit 0cee5c2

Please sign in to comment.