-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pre-commit-config.yaml
31 lines (31 loc) · 1.03 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
fail_fast: true
exclude: '.+\.html$'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 5df1a4bf6f04a1ed3a643167b38d502575e29aef
hooks:
- id: trailing-whitespace
- repo: local
hooks:
- id: flake8
name: Run flake8
files: ^biopipen/.+$
pass_filenames: false
entry: flake8
args: [biopipen]
# types: [python]
# language: system
# To fix the error in VScode UI: flake8: command not found
language: python
additional_dependencies: [flake8]
- id: versionchecker
name: Check version agreement in pyproject and __version__
entry: bash -c
language: system
args:
- get_ver() { echo $(egrep "^__version|^version " $1 | cut -d= -f2 | sed 's/\"\| //g'); };
v1=`get_ver pyproject.toml`;
v2=`get_ver biopipen/__init__.py`;
if [[ $v1 == $v2 ]]; then exit 0; else exit 1; fi
pass_filenames: false
files: ^pyproject\.toml|biopipen/__init__\.py$