-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
54 lines (49 loc) · 1.35 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: check-merge-conflict
stages: [push]
- id: check-yaml
stages: [push]
- id: end-of-file-fixer
stages: [push]
- id: mixed-line-ending
args: [ --fix=lf ]
stages: [push]
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
stages: [push]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.5.1
hooks:
- id: python-check-blanket-noqa
stages: [push]
- repo: https://github.com/Lucas-C/pre-commit-hooks-safety
rev: v1.2.1
hooks:
- id: python-safety-dependencies-check
stages: [push]
- repo: local
hooks:
- id: isort
name: isort
description: This hook runs isort within the project env
language: system
entry: python -m isort src
types: [python]
stages: [push]
- id: black
name: black
description: This hook runs black within the project env
language: system
entry: python -m black src
types: [python]
stages: [push]
- id: flake8
name: flake8
description: This hook runs flake8 with the project env
language: system
entry: python -m flake8 .
types: [python]
stages: [push]