-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (35 loc) · 975 Bytes
/
.pre-commit-config.yaml
File metadata and controls
35 lines (35 loc) · 975 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
35
- repo: https://github.com/pre-commit/pre-commit-hooks.git
sha: v0.9.2
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
sha: v1.1.0
hooks:
- id: python-safety-dependencies-check
- repo: local
hooks:
- id: python-bandit-vulnerability-check
name: bandit
entry: bandit
args: [-lll, --recursive, marrow, web, test]
language: system
files: ''
- repo: local
hooks:
- id: py.test
name: py.test
language: system
entry: sh -c 'TEST_SKIP_CAPPED=1 py.test'
files: ''