diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index 454c2c99..00000000 --- a/.isort.cfg +++ /dev/null @@ -1,5 +0,0 @@ -[settings] -multi_line_output=3 -include_trailing_comma=True -line_length=120 -skip=templates diff --git a/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/.isort.cfg b/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/.isort.cfg deleted file mode 100644 index 6030ed68..00000000 --- a/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/.isort.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[settings] -multi_line_output=3 -include_trailing_comma=True -line_length=120 diff --git a/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/pyproject.toml b/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/pyproject.toml index 719d3272..d8c30860 100644 --- a/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/pyproject.toml +++ b/cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/pyproject.toml @@ -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"] diff --git a/pyproject.toml b/pyproject.toml index 542d8792..dad5daa7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]