-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
58 lines (58 loc) · 1.2 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-toml
stages:
- commit
- push
- repo: local
hooks:
- id: black
name: black
stages:
- commit
- push
language: system
entry: poetry run black --check .
types:
- python
- id: isort
name: isort
stages:
- commit
- push
language: system
entry: poetry run isort --check .
types:
- python
- id: flake8
name: flake8
stages:
- commit
- push
language: system
entry: poetry run flake8 moments_dnns
types:
- python
- id: bandit
name: bandit
stages:
- commit
- push
language: system
entry: bandit -r moments_dnns
types:
- python
exclude: tests
- id: pylint
name: pylint
stages:
- commit
- push
language: system
entry: poetry run pylint
args: ['--rcfile', '.pylintrc']
types:
- python
exclude: tests