-
Notifications
You must be signed in to change notification settings - Fork 11
/
.pre-commit-config.yaml
63 lines (58 loc) · 1.36 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
63
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-symlinks
- id: check-xml
name: Check XML
files: \.(xml|rdf|ttl)$
- id: check-yaml
name: Check YAML
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: requirements-txt-fixer
name: Fix requirements*.txt
files: ^requirements.*\.txt$
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- repo: https://github.com/ambv/black
rev: 24.10.0
hooks:
- id: black
name: Blacken
- repo: https://github.com/PyCQA/bandit
rev: '1.7.10'
hooks:
- id: bandit
args: [-r]
exclude: ^tests/.*$
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.910
# hooks:
# - id: mypy
# exclude: ^tests/.*$
- repo: https://github.com/SINTEF/ci-cd
rev: v2.8.3
hooks:
- id: docs-api-reference
args:
- --package-dir=emmopy
- --package-dir=ontopy
- "--special-option=emmopy/emmocheck.py,show_bases: false"
- --unwanted-folder=__pycache__
- --unwanted-folder=java
files: ^(emmopy|ontopy)/.*\.py$
- id: docs-landing-page
args:
- --replacement=(LICENSE.txt),(LICENSE.md)
- --replacement=(tools),(../tools)
files: ^README.md$
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: python
types: [python]
require_serial: true
exclude: ^tests/.*$