forked from FORTH-ICS-INSPIRE/artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
36 lines (36 loc) · 963 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: local
hooks:
- id: value-verification
name: Check configuration files
language: script
entry: ./other/verify_script.py
pass_filenames: false
- repo: https://github.com/ambv/black
rev: 19.3b0
hooks:
- id: black
name: Apply black formatter
language_version: python3.6
- repo: git://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
- id: reorder-python-imports
name: Reorder python imports
language_version: 'python3.6'
- repo: git://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