-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.pre-commit-config.yaml
48 lines (41 loc) · 1.14 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
repos:
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/jsh9/cercis
rev: 0.2.5
hooks:
- id: cercis
exclude: ^tests/data/
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
- id: prettier
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pre-commit/pre-commit
rev: v4.0.1
hooks:
- id: validate_manifest
- repo: https://github.com/jsh9/markdown-toc-creator
rev: 0.0.10
hooks:
- id: markdown-toc-creator
- repo: local
hooks:
- id: copy_readme
name: copy_readme
entry: python .pre_commit_helper_scripts/copy_readme.py
language: system
types: [python]
- repo: local
hooks:
- id: check_full_diff_in_changelog
name: Check "full diff" exists in CHANGELOG.md
entry: python .pre_commit_helper_scripts/check_full_diff_in_changelog.py
language: python
additional_dependencies: ["markdown-it-py"]