We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49f02e8 commit 54e2d76Copy full SHA for 54e2d76
.pre-commit-config.yaml
@@ -1,9 +1,25 @@
1
exclude: '^docs/.*$'
2
+default_language_version:
3
+ python: python3.8
4
repos:
5
- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v2.1.0
6
+ rev: v4.3.0
7
+ hooks:
8
+ - id: check-docstring-first
9
+ - id: check-executables-have-shebangs
10
+ - id: check-json
11
+ - id: check-merge-conflict
12
+ - id: check-yaml
13
+ - id: debug-statements
14
+ - id: end-of-file-fixer
15
+ - id: trailing-whitespace
16
+- repo: https://github.com/pycqa/flake8
17
+ rev: 5.0.4
18
hooks:
19
- id: flake8
20
additional_dependencies:
- - flake8==3.3.0
- - flake8-tidy-imports==1.0.6
21
+ - flake8-bugbear==22.10.27
22
+ - flake8-builtins==2.0.1
23
+ - flake8-comprehensions==3.10.1
24
+ - flake8-tidy-imports==4.8.0
25
+
0 commit comments