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

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

Open
wants to merge 1 commit into
base: master
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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Exclude every file or folder starting with a dot.
exclude: ^\.
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.8.0
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.14.0
hooks:
- id: reorder-python-imports
files: '(\.pyi?|wscript)$'
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
rev: v5.0.0
hooks:
- id: check-yaml
exclude: 'meta\.yaml'
Expand All @@ -21,32 +21,32 @@ repos:
args: [--autofix, --no-sort-keys]
- id: trailing-whitespace
- repo: https://github.com/asottile/pyupgrade
rev: v1.25.1
rev: v3.19.0
hooks:
- id: pyupgrade
args: [
--py36-plus
]
- repo: https://github.com/asottile/blacken-docs
rev: v1.3.0
rev: 1.19.1
hooks:
- id: blacken-docs
additional_dependencies: [black==19.3b0]
files: '(\.md|\.rst)$'
- repo: https://github.com/psf/black
rev: 19.10b0
rev: 24.10.0
hooks:
- id: black
files: '(\.pyi?|wscript)$'
language_version: python3.7
- repo: https://github.com/PyCQA/doc8
rev: 0.8.1rc2
rev: v1.1.2
hooks:
- id: doc8
args: ["--max-line-length=88",
"--ignore=D002,D004"]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
files: '(\.py|wscript)$'
Expand Down
Loading