forked from Lucas-C/pre-commit-hooks-bandit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
36 lines (36 loc) · 910 Bytes
/
.pre-commit-config.yaml
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
36
repos:
- repo: git://github.com/Lucas-C/pre-commit-hooks
sha: v1.1.6
hooks:
- id: forbid-crlf
- id: forbid-tabs
- repo: git://github.com/pre-commit/pre-commit-hooks
sha: v2.2.1
hooks:
- id: trailing-whitespace
files: ''
args:
- --no-markdown-linebreak-ext
- id: check-yaml
- repo: git://github.com/pre-commit/mirrors-pylint
sha: v2.3.1
hooks:
- id: pylint
args:
- --rcfile=.pylintrc
- --reports=no
- repo: git://github.com/Lucas-C/pre-commit-hooks-safety
sha: v1.1.0
hooks:
- id: python-safety-dependencies-check
- repo: git://github.com/Lucas-C/pre-commit-hooks-bandit
sha: v1.0.4
hooks:
- id: python-bandit-vulnerability-check
- repo: local
hooks:
- id: py.test
name: py.test
language: system
entry: sh -c py.test
files: ''