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 f5f78f5 commit 662d4d8Copy full SHA for 662d4d8
.pre-commit-config.yaml
@@ -0,0 +1,27 @@
1
+# Install the pre-commit hooks below with
2
+# 'pre-commit install'
3
+
4
+# Auto-update the version of the hooks with
5
+# 'pre-commit autoupdate'
6
7
+# Run the hooks on all files with
8
+# 'pre-commit run --all'
9
10
+repos:
11
+- repo: https://github.com/pre-commit/pre-commit-hooks
12
+ rev: v4.4.0
13
+ hooks:
14
+ - id: end-of-file-fixer
15
+ # only include python files
16
+ files: \.py$
17
+ - id: debug-statements
18
19
20
+ - id: trailing-whitespace
21
22
23
24
+- repo: https://github.com/pycqa/flake8
25
+ rev: '6.1.0'
26
27
+ - id: flake8
0 commit comments