Skip to content

Commit e26c4b7

Browse files
committed
Bumping pre-commit dependencies
1 parent a2d4dc7 commit e26c4b7

1 file changed

Lines changed: 20 additions & 6 deletions

File tree

.pre-commit-config.yaml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,42 @@
11
repos:
22
- repo: https://github.com/asottile/pyupgrade
3-
rev: v2.10.0
3+
rev: v3.15.2
44
hooks:
55
- id: pyupgrade
66
args: ["--py36-plus"]
77
- repo: https://github.com/asottile/reorder_python_imports
8-
rev: v2.4.0
8+
rev: v3.12.0
99
hooks:
1010
- id: reorder-python-imports
1111
args: ["--application-directories", "sqlalchemy_solr"]
1212
- repo: https://github.com/psf/black
13-
rev: 20.8b1
13+
rev: 24.3.0
1414
hooks:
1515
- id: black
16-
- repo: https://gitlab.com/pycqa/flake8
17-
rev: 3.8.4
16+
- repo: https://github.com/PyCQA/flake8
17+
rev: 7.0.0
1818
hooks:
1919
- id: flake8
2020
additional_dependencies:
2121
- flake8-bugbear
2222
- flake8-implicit-str-concat
2323
- repo: https://github.com/pre-commit/pre-commit-hooks
24-
rev: v3.4.0
24+
rev: v4.5.0
2525
hooks:
2626
- id: check-byte-order-marker
2727
- id: trailing-whitespace
2828
- id: end-of-file-fixer
29+
- repo: https://github.com/pylint-dev/pylint
30+
rev: v3.1.0
31+
hooks:
32+
- id: pylint
33+
name: pylint
34+
entry: pylint
35+
language: system
36+
types: [python]
37+
args:
38+
[
39+
"-rn", # Only display messages
40+
"-sn", # Don't display the score
41+
"--disable=missing-module-docstring,missing-class-docstring,missing-function-docstring"
42+
]

0 commit comments

Comments
 (0)