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 3474740 commit b8cb5d9Copy full SHA for b8cb5d9
.pre-commit-config.yaml
@@ -0,0 +1,28 @@
1
+default_language_version:
2
+ python: python3.12
3
+repos:
4
+
5
+- repo: https://github.com/psf/black
6
+ rev: 23.9.1
7
+ hooks:
8
+ - id: black
9
+ args: ['--line-length=120']
10
11
+- repo: https://github.com/PyCQA/flake8
12
+ rev: 6.1.0
13
14
+ - id: flake8
15
+ additional_dependencies: [flake8-print]
16
+ args: ['--enable=T', '--max-line-length=120']
17
+ exclude: init.py
18
19
+- repo: https://github.com/pre-commit/pre-commit-hooks
20
+ rev: v4.5.0
21
22
+ - id: debug-statements
23
24
+- repo: https://github.com/PyCQA/bandit
25
+ rev: '1.7.5'
26
27
+ - id: bandit
28
+ exclude: ^uep_backend/tests/
0 commit comments