|
1 | 1 | # See https://pre-commit.com for more information |
2 | 2 | # See https://pre-commit.com/hooks.html for more hooks |
3 | 3 | repos: |
4 | | -- repo: https://github.com/pre-commit/pre-commit-hooks |
5 | | - rev: v4.4.0 |
6 | | - hooks: |
7 | | - - id: trailing-whitespace |
8 | | - - id: end-of-file-fixer |
9 | | - - id: check-yaml |
10 | | - - id: check-added-large-files |
11 | | - - id: check-byte-order-marker |
12 | | - - id: check-case-conflict |
13 | | - - id: check-json |
14 | | - - id: mixed-line-ending |
15 | | - - id: check-ast |
16 | | - - id: check-merge-conflict |
| 4 | + - repo: https://github.com/pre-commit/pre-commit-hooks |
| 5 | + rev: v6.0.0 |
| 6 | + hooks: |
| 7 | + - id: trailing-whitespace |
| 8 | + - id: end-of-file-fixer |
| 9 | + - id: check-yaml |
| 10 | + - id: check-added-large-files |
| 11 | + - id: fix-byte-order-marker |
| 12 | + - id: check-case-conflict |
| 13 | + - id: check-json |
| 14 | + - id: mixed-line-ending |
| 15 | + - id: check-ast |
| 16 | + - id: check-merge-conflict |
17 | 17 |
|
18 | | -- repo: https://github.com/psf/black |
19 | | - rev: 23.3.0 |
20 | | - hooks: |
21 | | - - id: black |
| 18 | + - repo: https://github.com/psf/black |
| 19 | + rev: 25.9.0 |
| 20 | + hooks: |
| 21 | + - id: black |
22 | 22 |
|
23 | | -- repo: https://github.com/asottile/blacken-docs |
24 | | - rev: 1.13.0 |
25 | | - hooks: |
26 | | - - id: blacken-docs |
27 | | - additional_dependencies: [black] |
| 23 | + - repo: https://github.com/asottile/blacken-docs |
| 24 | + rev: 1.20.0 |
| 25 | + hooks: |
| 26 | + - id: blacken-docs |
| 27 | + additional_dependencies: [black] |
28 | 28 |
|
29 | | -- repo: https://github.com/timothycrosley/isort |
30 | | - rev: 5.12.0 |
31 | | - hooks: |
32 | | - - id: isort |
33 | | - args: ["--profile", "black", "--filter-files"] |
| 29 | + - repo: https://github.com/timothycrosley/isort |
| 30 | + rev: 7.0.0 |
| 31 | + hooks: |
| 32 | + - id: isort |
| 33 | + args: ["--profile", "black", "--filter-files"] |
34 | 34 |
|
35 | | -- repo: https://github.com/pycqa/flake8 |
36 | | - rev: 6.0.0 |
37 | | - hooks: |
38 | | - - id: flake8 |
39 | | - additional_dependencies: |
40 | | - - flake8-bugbear |
41 | | - - flake8-docstrings |
42 | | - - flake8-simplify |
43 | | - - pep8-naming |
| 35 | + - repo: https://github.com/pycqa/flake8 |
| 36 | + rev: 7.3.0 |
| 37 | + hooks: |
| 38 | + - id: flake8 |
| 39 | + additional_dependencies: |
| 40 | + - flake8-bugbear |
| 41 | + - flake8-docstrings |
| 42 | + - flake8-simplify |
| 43 | + - pep8-naming |
44 | 44 |
|
45 | | -- repo: https://github.com/asottile/pyupgrade |
46 | | - rev: v3.4.0 |
47 | | - hooks: |
48 | | - - id: pyupgrade |
49 | | - args: [--py37-plus] |
| 45 | + - repo: https://github.com/asottile/pyupgrade |
| 46 | + rev: v3.21.0 |
| 47 | + hooks: |
| 48 | + - id: pyupgrade |
| 49 | + args: [--py37-plus] |
50 | 50 |
|
51 | | -- repo: https://github.com/pre-commit/mirrors-mypy |
52 | | - rev: v1.3.0 |
53 | | - hooks: |
54 | | - - id: mypy |
55 | | - additional_dependencies: |
56 | | - - types-requests |
| 51 | + - repo: https://github.com/pre-commit/mirrors-mypy |
| 52 | + rev: v1.18.2 |
| 53 | + hooks: |
| 54 | + - id: mypy |
| 55 | + additional_dependencies: |
| 56 | + - types-requests |
0 commit comments