forked from MITRECND/malchive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
36 lines (36 loc) · 1011 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: https://github.com/pre-commit/pre-commit-hooks.git
rev: v2.4.0
hooks:
- id: check-ast
- id: check-executables-have-shebangs
- id: check-docstring-first
- id: check-case-conflict
- id: check-merge-conflict
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://gitlab.com/pycqa/flake8.git
rev: "3.7.9"
hooks:
- id: flake8
args:
- "--max-line-length=100"
- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v0.761
hooks:
- id: mypy
name: malchive utilities
files: ^malchive/utilities
- id: mypy
name: malchive decoders
files: ^malchive/decoders/
- id: mypy
name: malchive active discovery
files: ^malchive/active_discovery/
- id: mypy
name: malchive extras
files: ^malchive/extras/
- id: mypy
name: malchive helpers
files: ^malchive/helpers/