From a2e0814f192359e1a1bd90fe2b7736d5a8335056 Mon Sep 17 00:00:00 2001 From: Dorian Turba <froggit.commit.z3jqj@simplelogin.com> Date: Wed, 12 Jul 2023 11:09:38 +0200 Subject: [PATCH] move templates in templates folder --- black.r2.yml | 4 ++-- flake8.r2.yml | 4 ++-- isort.r2.yml | 4 ++-- mypy.r2.yml | 4 ++-- pytest.r2.yml | 4 ++-- ruff.r2.yml | 4 ++-- {python => templates/python}/code_quality/black/README.md | 0 {python => templates/python}/code_quality/black/black.yml | 0 {python => templates/python}/code_quality/flake8/README.md | 0 {python => templates/python}/code_quality/flake8/flake8.yml | 0 {python => templates/python}/code_quality/isort/README.md | 0 {python => templates/python}/code_quality/isort/isort.yml | 0 {python => templates/python}/code_quality/mypy/README.md | 0 {python => templates/python}/code_quality/mypy/mypy.yml | 0 {python => templates/python}/code_quality/ruff/README.md | 0 {python => templates/python}/code_quality/ruff/ruff.yml | 0 {python => templates/python}/meta/README.md | 0 {python => templates/python}/meta/python_install.yml | 0 {python => templates/python}/testing/pytest/README.md | 0 {python => templates/python}/testing/pytest/pytest.yml | 0 20 files changed, 12 insertions(+), 12 deletions(-) rename {python => templates/python}/code_quality/black/README.md (100%) rename {python => templates/python}/code_quality/black/black.yml (100%) rename {python => templates/python}/code_quality/flake8/README.md (100%) rename {python => templates/python}/code_quality/flake8/flake8.yml (100%) rename {python => templates/python}/code_quality/isort/README.md (100%) rename {python => templates/python}/code_quality/isort/isort.yml (100%) rename {python => templates/python}/code_quality/mypy/README.md (100%) rename {python => templates/python}/code_quality/mypy/mypy.yml (100%) rename {python => templates/python}/code_quality/ruff/README.md (100%) rename {python => templates/python}/code_quality/ruff/ruff.yml (100%) rename {python => templates/python}/meta/README.md (100%) rename {python => templates/python}/meta/python_install.yml (100%) rename {python => templates/python}/testing/pytest/README.md (100%) rename {python => templates/python}/testing/pytest/pytest.yml (100%) diff --git a/black.r2.yml b/black.r2.yml index 70e1804..762df32 100644 --- a/black.r2.yml +++ b/black.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/black/black.yml - documentation: ./python/code_quality/black/README.md + template: ./templates/python/code_quality/black/black.yml + documentation: ./templates/python/code_quality/black/README.md data: description: "Run Black on your repository" icon: ⚫ diff --git a/flake8.r2.yml b/flake8.r2.yml index 5a05adc..ad7323a 100644 --- a/flake8.r2.yml +++ b/flake8.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/flake8/flake8.yml - documentation: ./python/code_quality/flake8/README.md + template: ./templates/python/code_quality/flake8/flake8.yml + documentation: ./templates/python/code_quality/flake8/README.md data: description: "Run flake8 on your repository" icon: 💎 diff --git a/isort.r2.yml b/isort.r2.yml index 2d59d75..cfa893c 100644 --- a/isort.r2.yml +++ b/isort.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/isort/isort.yml - documentation: ./python/code_quality/isort/README.md + template: ./templates/python/code_quality/isort/isort.yml + documentation: ./templates/python/code_quality/isort/README.md data: description: "Run isort on your repository" icon: 💎 diff --git a/mypy.r2.yml b/mypy.r2.yml index 105d900..2085135 100644 --- a/mypy.r2.yml +++ b/mypy.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/mypy/mypy.yml - documentation: ./python/code_quality/mypy/README.md + template: ./templates/python/code_quality/mypy/mypy.yml + documentation: ./templates/python/code_quality/mypy/README.md data: description: "Run mypy on your repository" icon: 💎 diff --git a/pytest.r2.yml b/pytest.r2.yml index 761d62c..147cf79 100644 --- a/pytest.r2.yml +++ b/pytest.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/testing/pytest/pytest.yml - documentation: ./python/testing/pytest/README.md + template: ./templates/python/testing/pytest/pytest.yml + documentation: ./templates/python/testing/pytest/README.md data: description: "Run pytest on your repository" icon: 💯 diff --git a/ruff.r2.yml b/ruff.r2.yml index 616bc6a..11519c2 100644 --- a/ruff.r2.yml +++ b/ruff.r2.yml @@ -1,6 +1,6 @@ files: - template: ./python/code_quality/ruff/ruff.yml - documentation: ./python/code_quality/ruff/README.md + template: ./templates/python/code_quality/ruff/ruff.yml + documentation: ./templates/python/code_quality/ruff/README.md data: description: "Run ruff on your repository" icon: 💎 diff --git a/python/code_quality/black/README.md b/templates/python/code_quality/black/README.md similarity index 100% rename from python/code_quality/black/README.md rename to templates/python/code_quality/black/README.md diff --git a/python/code_quality/black/black.yml b/templates/python/code_quality/black/black.yml similarity index 100% rename from python/code_quality/black/black.yml rename to templates/python/code_quality/black/black.yml diff --git a/python/code_quality/flake8/README.md b/templates/python/code_quality/flake8/README.md similarity index 100% rename from python/code_quality/flake8/README.md rename to templates/python/code_quality/flake8/README.md diff --git a/python/code_quality/flake8/flake8.yml b/templates/python/code_quality/flake8/flake8.yml similarity index 100% rename from python/code_quality/flake8/flake8.yml rename to templates/python/code_quality/flake8/flake8.yml diff --git a/python/code_quality/isort/README.md b/templates/python/code_quality/isort/README.md similarity index 100% rename from python/code_quality/isort/README.md rename to templates/python/code_quality/isort/README.md diff --git a/python/code_quality/isort/isort.yml b/templates/python/code_quality/isort/isort.yml similarity index 100% rename from python/code_quality/isort/isort.yml rename to templates/python/code_quality/isort/isort.yml diff --git a/python/code_quality/mypy/README.md b/templates/python/code_quality/mypy/README.md similarity index 100% rename from python/code_quality/mypy/README.md rename to templates/python/code_quality/mypy/README.md diff --git a/python/code_quality/mypy/mypy.yml b/templates/python/code_quality/mypy/mypy.yml similarity index 100% rename from python/code_quality/mypy/mypy.yml rename to templates/python/code_quality/mypy/mypy.yml diff --git a/python/code_quality/ruff/README.md b/templates/python/code_quality/ruff/README.md similarity index 100% rename from python/code_quality/ruff/README.md rename to templates/python/code_quality/ruff/README.md diff --git a/python/code_quality/ruff/ruff.yml b/templates/python/code_quality/ruff/ruff.yml similarity index 100% rename from python/code_quality/ruff/ruff.yml rename to templates/python/code_quality/ruff/ruff.yml diff --git a/python/meta/README.md b/templates/python/meta/README.md similarity index 100% rename from python/meta/README.md rename to templates/python/meta/README.md diff --git a/python/meta/python_install.yml b/templates/python/meta/python_install.yml similarity index 100% rename from python/meta/python_install.yml rename to templates/python/meta/python_install.yml diff --git a/python/testing/pytest/README.md b/templates/python/testing/pytest/README.md similarity index 100% rename from python/testing/pytest/README.md rename to templates/python/testing/pytest/README.md diff --git a/python/testing/pytest/pytest.yml b/templates/python/testing/pytest/pytest.yml similarity index 100% rename from python/testing/pytest/pytest.yml rename to templates/python/testing/pytest/pytest.yml -- GitLab