-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.pre-commit-config.yaml
62 lines (55 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
## general purpose linting and formatting
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/codespell-project/codespell
rev: v1.17.1
hooks:
- id: codespell
## Python support
- repo: https://github.com/psf/black
rev: 19.10b0
hooks:
- id: black
- repo: https://gitlab.com/PyCQA/flake8
rev: 3.8.3
hooks:
- id: flake8
exclude: ^report/
- repo: https://github.com/timothycrosley/isort
rev: 5.5.3
hooks:
- id: isort
## Snakemake linting
- repo: https://github.com/snakemake/snakefmt
rev: 0.2.4
hooks:
- id: snakefmt
## C++ support
- repo: https://gitlab.com/daverona/pre-commit/cpp
rev: 0.8.0
hooks:
- id: clang-format
- id: cpplint
args: ["--includeorder=default"]
- id: cppcheck
## R support
- repo: https://github.com/lorenzwalthert/precommit
rev: v0.1.3
hooks:
- id: style-files
- id: parsable-R
- id: no-browser-statement
- id: lintr
verbose: true
## Note: the following three hooks apply only to R package development
# - id: roxygenize
# - id: deps-in-desc
# - id: use-tidy-description