diff --git a/.claude/commands/check-unit-tests-redundancy.md b/.claude/commands/check-unit-tests-redundancy.md index 08845a514..e4b0bdf27 100644 --- a/.claude/commands/check-unit-tests-redundancy.md +++ b/.claude/commands/check-unit-tests-redundancy.md @@ -95,4 +95,4 @@ Before finalizing: - [ ] Redundancy report has been generated - [ ] No useful tests were accidentally removed - [ ] Remaining tests still provide comprehensive coverage -- [ ] `__init__.py` files are updated if needed \ No newline at end of file +- [ ] `__init__.py` files are updated if needed diff --git a/.claude/commands/commit.md b/.claude/commands/commit.md index db5d36771..3cfd83c75 100644 --- a/.claude/commands/commit.md +++ b/.claude/commands/commit.md @@ -63,4 +63,4 @@ Generate a commit message for the current staged changes, then create the commit - Never use `--no-verify` or skip pre-commit hooks. - If the pre-commit hook fails, fix the issue and create a NEW commit (do not amend). - Never push unless the user explicitly asks. -- If there are no changes to commit, inform the user and stop. \ No newline at end of file +- If there are no changes to commit, inform the user and stop. diff --git a/.claude/commands/debug-unit-tests-and-fixtures.md b/.claude/commands/debug-unit-tests-and-fixtures.md index f1aa268ed..216a0ec04 100644 --- a/.claude/commands/debug-unit-tests-and-fixtures.md +++ b/.claude/commands/debug-unit-tests-and-fixtures.md @@ -131,4 +131,4 @@ Before considering debugging complete: - [ ] All potential bugs have been flagged to user - [ ] Changes are documented with reasoning - [ ] Edge cases discovered are documented -- [ ] If any modules have been updated, they've also been reformatted using black \ No newline at end of file +- [ ] If any modules have been updated, they've also been reformatted using black diff --git a/.claude/commands/make-unit-tests-and-fixtures.md b/.claude/commands/make-unit-tests-and-fixtures.md index 6a162ad96..c74107487 100644 --- a/.claude/commands/make-unit-tests-and-fixtures.md +++ b/.claude/commands/make-unit-tests-and-fixtures.md @@ -81,4 +81,4 @@ Before finalizing: - [ ] Tests are independent - [ ] Naming is consistent with project patterns - [ ] Style guidelines are followed -- [ ] `__init__.py` files are updated \ No newline at end of file +- [ ] `__init__.py` files are updated diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 78a2880db..bece14a70 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -10,4 +10,4 @@ /.pre-commit-config.yaml @camUrban **/pyproject.toml @camUrban **/requirements*.txt @camUrban -**/setup.cfg @camUrban \ No newline at end of file +**/setup.cfg @camUrban diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..41f0e18bf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + cooldown: + default-days: 7 + groups: + actions: + patterns: + - "*" + - package-ecosystem: pre-commit + directory: / + schedule: + interval: weekly + cooldown: + default-days: 7 + groups: + pre-commit: + patterns: + - "*" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5bf64e4f6..a671e570b 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -12,7 +12,7 @@ Link any related issues using GitHub's syntax. For bugs, write, "Fixes #