-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
36 lines (35 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
default_language_version:
python: python3
ci:
skip: [colrev-hooks-format, colrev-hooks-check]
repos:
- repo: local
hooks:
- id: colrev-hooks-format
name: "CoLRev ReviewManager: format"
entry: colrev-hooks-format
language: python
stages: [commit]
pass_filenames: false
- id: colrev-hooks-check
name: "CoLRev ReviewManager: check"
entry: colrev-hooks-check
language: python
stages: [commit]
pass_filenames: false
- id: colrev-hooks-report
name: "CoLRev ReviewManager: report"
entry: colrev-hooks-report
language: python
stages: [prepare-commit-msg]
- id: colrev-hooks-share
name: "CoLRev ReviewManager: share"
entry: colrev-hooks-share
language: python
stages: [push]
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
stages: [commit]