Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0)
- [github.com/PyCQA/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/asottile/pyupgrade: v3.10.1 → v3.15.2](asottile/pyupgrade@v3.10.1...v3.15.2)
- [github.com/psf/black: 23.7.0 → 24.3.0](psf/black@23.7.0...24.3.0)
- [github.com/pre-commit/mirrors-prettier: v3.0.1 → v4.0.0-alpha.8](pre-commit/mirrors-prettier@v3.0.1...v4.0.0-alpha.8)
- [github.com/PyCQA/flake8: 6.1.0 → 7.0.0](PyCQA/flake8@6.1.0...7.0.0)
- [github.com/PyCQA/bandit: 1.7.5 → 1.7.8](PyCQA/bandit@1.7.5...1.7.8)
- [github.com/pre-commit/mirrors-mypy: v1.5.0 → v1.9.0](pre-commit/mirrors-mypy@v1.5.0...v1.9.0)
- [github.com/rstcheck/rstcheck: v6.1.2 → v6.2.0](rstcheck/rstcheck@v6.1.2...v6.2.0)
- [github.com/AleksaC/hadolint-py: v2.12.0.2 → v2.12.0.3](AleksaC/hadolint-py@v2.12.0.2...v2.12.0.3)
  • Loading branch information
pre-commit-ci[bot] committed Mar 25, 2024
1 parent 0f80a9c commit 944d9f3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:

# Other file formatting, plus common Git mistakes & text file standardization:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files # Don't accidentally commit giant files.
- id: check-merge-conflict # Watch for lingering merge markers.
Expand All @@ -38,7 +38,7 @@ repos:

# Make sure import statements are sorted uniformly.
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort

Expand All @@ -59,20 +59,20 @@ repos:
# Update a bunch of Python syntax, using __futures__ for Python 3.8/3.9
# Note that this sometimes conflicts with Pydantic on Python 3.8/3.9
- repo: https://github.com/asottile/pyupgrade
rev: v3.10.1
rev: v3.15.2
hooks:
- id: pyupgrade
args: ["--py38-plus"]

# Deterministic python formatting:
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 24.3.0
hooks:
- id: black
language_version: python3.11

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.1
rev: v4.0.0-alpha.8
hooks:
- id: prettier
types_or: [yaml]
Expand All @@ -83,7 +83,7 @@ repos:

# Check for PEP8 non-compliance, code complexity, style, errors, etc:
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
args: ["--config", "tox.ini"]
Expand All @@ -101,15 +101,15 @@ repos:

# Check for known security vulnerabilities:
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
rev: 1.7.8
hooks:
- id: bandit
# Currently no configuration...
# args: ['--configfile', '.bandit.yml']

# Use type annotations to check types
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.0
rev: v1.9.0
hooks:
- id: mypy
additional_dependencies:
Expand All @@ -126,15 +126,15 @@ repos:

# Lint any RST files and embedded code blocks for syntax / formatting errors
- repo: https://github.com/rstcheck/rstcheck
rev: v6.1.2
rev: v6.2.0
hooks:
- id: rstcheck
additional_dependencies: [sphinx]
args: ["--config", "tox.ini"]

# Lint Dockerfiles for errors and to ensure best practices
- repo: https://github.com/AleksaC/hadolint-py
rev: v2.12.0.2
rev: v2.12.0.3
hooks:
- id: hadolint

Expand Down

0 comments on commit 944d9f3

Please sign in to comment.