Add stricter configuration defaults#157
Merged
Merged
Conversation
- Bump minimum Python to 3.11, remove 3.10 from CI matrix - Add security pre-commit hooks: shellcheck, actionlint, zizmor - Add ruff src path and docstring-code-format settings - Enable branch coverage with standard exclude patterns - Add pip-audit dependency group for vulnerability scanning Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Ninja3047
reviewed
Jan 26, 2026
* main: build(deps): bump the actions group across 2 directories with 2 updates (#177) build(deps): bump the actions group across 2 directories with 1 update build(deps): bump the actions group across 2 directories with 1 update build(deps): bump the actions group across 2 directories with 5 updates build(deps): bump the actions group across 2 directories with 1 update build(deps): bump actions/deploy-pages build(deps): bump the actions group across 2 directories with 1 update build(deps): bump the actions group across 2 directories with 3 updates build(deps): bump actions/upload-artifact build(deps): bump actions/download-artifact build(deps): bump the actions group across 2 directories with 1 update build(deps): bump the actions group across 2 directories with 1 update (#160) Change Dependabot schedule from daily to weekly build(deps): bump actions/attest-build-provenance build(deps): bump the actions group across 2 directories with 1 update
ekilmer
reviewed
Jun 13, 2026
Comment on lines
+21
to
+31
| - package-ecosystem: pre-commit | ||
| cooldown: | ||
| default-days: 7 | ||
| directories: | ||
| - "{{cookiecutter.project_slug}}" | ||
| groups: | ||
| pre-commit: | ||
| patterns: | ||
| - "*" | ||
| schedule: | ||
| interval: weekly |
Contributor
There was a problem hiding this comment.
Tested and confirmed works. Generated this PR on my fork ekilmer#2
Ninja3047
approved these changes
Jun 14, 2026
Comment on lines
+55
to
+58
| .PHONY: audit | ||
| audit: | ||
| uv sync --group audit | ||
| uv run pip-audit . |
Contributor
There was a problem hiding this comment.
uv has a bulit in audit, but this can be a follow up
https://docs.astral.sh/uv/reference/cli/#uv-audit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
srcpath for first-party imports,docstring-code-formatTest plan
make lint && make testmake lint && make testuv run pip-auditruns successfully🤖 Generated with Claude Code