forked from FORTH-ICS-INSPIRE/artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
46 lines (46 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
repos:
- repo: local
hooks:
- id: value-verification
name: Check configuration files
language: script
entry: ./other/verify_script.py
pass_filenames: false
- id: configuration-unittest
name: Configuration Unit Tests
entry: /bin/bash -c 'cd backend-services/configuration && make test'
language: script
files: "backend-services/configuration/core"
pass_filenames: false
- id: detection-unittest
name: Detection Unit Tests
entry: /bin/bash -c 'cd backend-services/detection && make test'
language: script
files: "backend-services/detection/core"
pass_filenames: false
# - repo: https://github.com/ambv/black
# rev: 21.5b1
# hooks:
# - id: black
# name: Apply black formatter
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
- id: reorder-python-imports
name: Reorder python imports
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-docstring-first
- id: check-merge-conflict
- id: check-yaml
exclude: '^artemis-chart/'
- id: check-json
- id: debug-statements
- id: end-of-file-fixer
- id: flake8
exclude: .git, __pycache__, postgres-*
- id: requirements-txt-fixer
- id: trailing-whitespace