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 7977cff commit 2d5bbf4Copy full SHA for 2d5bbf4
.gitignore
@@ -1,3 +1,2 @@
1
**pycache**
2
.vscode*
3
-.pre-commit-config.yaml
.pre-commit-config.yaml
@@ -0,0 +1,24 @@
+repos:
+- repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v4.4.0
4
+ hooks:
5
+ - id: trailing-whitespace
6
+ - id: end-of-file-fixer
7
+ - id: check-yaml
8
+ - id: check-added-large-files
9
+ args: ['--maxkb=2000']
10
+- repo: https://github.com/psf/black
11
+ rev: 23.3.0
12
13
+ - id: black
14
+ args: ["--line-length", "140"]
15
+- repo: https://github.com/pycqa/flake8
16
+ rev: 4.0.1
17
18
+ - id: flake8
19
+ args: ["--ignore=E722,E501"]
20
+- repo: https://github.com/pycqa/isort
21
+ rev: 5.12.0
22
23
+ - id: isort
24
+ args: ["--profile", "black", "--filter-files"]
0 commit comments