Skip to content

Commit 485cc9e

Browse files
authored
Update .pre-commit-config.yaml
1 parent e9246c0 commit 485cc9e

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.pre-commit-config.yaml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
repos:
22
- repo: https://github.com/PyCQA/autoflake
3-
rev: v2.0.0
3+
rev: v2.1.1
44
hooks:
55
- id: autoflake
66
args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variable']
77

88
- repo: https://github.com/pycqa/isort
9-
rev: 5.11.4
9+
rev: 5.12.0
1010
hooks:
1111
- id: isort
1212
args: ["--profile", "black", "--filter-files"]
@@ -20,7 +20,18 @@ repos:
2020
exclude: ^docs/.*|.*.md
2121

2222
- repo: https://github.com/psf/black
23-
rev: 22.12.0
23+
rev: 23.3.0
2424
hooks:
2525
- id: black
2626
language_version: python3
27+
28+
- repo: https://github.com/adrienverge/yamllint.git
29+
rev: v1.32.0
30+
hooks:
31+
- id: yamllint
32+
args: ["-d", "relaxed"]
33+
34+
- repo: https://github.com/pycqa/flake8
35+
rev: 6.0.0
36+
hooks:
37+
- id: flake8

0 commit comments

Comments
 (0)