diff --git a/.copier-answers.yml b/.copier-answers.yml index 9f72f48..d33a5c9 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: acb4a69 +_commit: 941f1c9 _src_path: ../../templates/base add_extension: python email: 3105306+timkpaine@users.noreply.github.com diff --git a/pyproject.toml b/pyproject.toml index 45319bb..aa38c9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,6 +123,7 @@ include = [ "README.md", ] exclude = [ + ".copier-answers.yml", "/.github", "/.gitattributes", "/.gitignore", @@ -134,6 +135,7 @@ include = [ "/airflow_priority", ] exclude = [ + ".copier-answers.yml", "/.github", "/.gitattributes", "/.gitignore", @@ -150,16 +152,14 @@ testpaths = "airflow_priority/tests" [tool.ruff] line-length = 150 +[tool.ruff.lint] +extend-select = ["I"] + [tool.ruff.lint.isort] combine-as-imports = true default-section = "third-party" known-first-party = ["airflow_priority"] -section-order = [ - "future", - "third-party", - "first-party", - "local-folder", -] +section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"] [tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401", "F403"]