Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #198

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
pass_filenames: false

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand All @@ -26,18 +26,18 @@ repos:
args: [--pytest-test-first]

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
rev: v0.41.0
hooks:
- id: markdownlint
args: [--disable, MD013]

- repo: https://github.com/adrienverge/yamllint
rev: v1.28.0
rev: v1.35.1
hooks:
- id: yamllint

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.19.2
rev: 0.28.6
hooks:
- id: check-jsonschema
name: Validate color map json files with json schema
Expand All @@ -46,18 +46,18 @@ repos:
args: ["--schemafile", "style/colors/themes/validate.json"]

- repo: https://github.com/asottile/pyupgrade
rev: v3.2.2
rev: v3.16.0
hooks:
- id: pyupgrade
args: [--py37-plus]

- repo: https://github.com/psf/black
rev: 22.10.0
rev: 24.4.2
hooks:
- id: black

- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
rev: 1.18.0
hooks:
- id: blacken-docs
additional_dependencies: [black]
Expand All @@ -68,12 +68,12 @@ repos:
- id: absolufy-imports

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.13.2
hooks:
- id: isort

- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 7.1.0
hooks:
- id: flake8
additional_dependencies: &flake8_dependencies
Expand All @@ -91,13 +91,13 @@ repos:
- pep8-naming

- repo: https://github.com/asottile/yesqa
rev: v1.4.0
rev: v1.5.0
hooks:
- id: yesqa
additional_dependencies: *flake8_dependencies

- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
rev: v1.10.0
hooks:
- id: rst-backticks
- id: rst-directive-colons
Expand Down
Loading