-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
34 lines (34 loc) · 941 Bytes
/
.pre-commit-config.yaml
File metadata and controls
34 lines (34 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v2.2.3
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-byte-order-marker
- id: check-docstring-first
- id: check-merge-conflict
- id: check-symlinks
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: forbid-new-submodules
- id: check-json
- id: check-xml
- id: check-yaml
- repo: https://github.com/Lucas-C/pre-commit-hooks-safety.git
rev: v1.1.0
hooks:
- id: python-safety-dependencies-check
- repo: local
hooks:
- id: python-bandit-vulnerability-check
name: bandit
args: [-lll, --recursive, .]
language: system
entry: bandit
files: ''
- id: py.test
name: py.test
language: system
entry: sh -c 'TEST_SKIP_SLOW=1 py.test'
files: ''