Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/psf/black: 24.8.0 → 24.10.0](psf/black@24.8.0...24.10.0)
- [github.com/astral-sh/ruff-pre-commit: v0.6.8 → v0.6.9](astral-sh/ruff-pre-commit@v0.6.8...v0.6.9)
  • Loading branch information
pre-commit-ci[bot] authored Oct 14, 2024
1 parent 29666bc commit f210946
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ default_language_version:
python: python3.12
files: '.py'
exclude: ".env,.yml,.gitignore,.git,.md,.txt"
default_stages: [push, commit]
default_stages: [pre-push, pre-commit]
repos:
- repo: https://github.com/PyCQA/bandit
rev: 1.7.10
hooks:
- id: bandit
args: ["-c", "pyproject.toml"]
name: Bandit
stages: [commit]
stages: [pre-commit]
additional_dependencies: ["bandit[toml]"]

- repo: https://github.com/psf/black
rev: 24.8.0
rev: 24.10.0
hooks:
- id: black
name: Black
stages: [commit]
stages: [pre-commit]

- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
Expand All @@ -27,10 +27,10 @@ repos:
args: ["--in-place", "--remove-unused-variables", "--recursive"]
name: AutoFlake
description: "Format with AutoFlake"
stages: [commit]
stages: [pre-commit]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.8
rev: v0.6.9
hooks:
- id: ruff
name: Ruff
Expand All @@ -42,6 +42,6 @@ repos:
- id: isort
name: ISort
description: "Format with Isort"
stages: [commit]
stages: [pre-commit]


0 comments on commit f210946

Please sign in to comment.