-
Notifications
You must be signed in to change notification settings - Fork 23
/
.pre-commit-config.yaml
41 lines (40 loc) · 1.09 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
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
exclude: |
(?x)^(
.*\.ref$|
.*\.svg$|
build/|
dist/|
src/actinia_core.egg-info/
)
- id: end-of-file-fixer
exclude: |
(?x)^(
.*\.ref$|
.*\.svg$|
build/|
dist/|
src/actinia_core.egg-info/
)
- repo: https://github.com/mundialis/github-workflows
rev: 1.2.0
hooks:
- id: linting
# still deactivated, needs major code cleanup:
# - repo: https://github.com/igorshubovych/markdownlint-cli
# rev: v0.33.0
# hooks:
# - id: markdownlint
# - repo: https://github.com/adrienverge/yamllint.git
# rev: v1.29.0
# hooks:
# - id: yamllint
# args: [--format, parsable, --strict, -d,
# '{extends: default, rules: {truthy: disable,
# line-length: {max: 120,
# allow-non-breakable-words: true}}}']