-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.pre-commit-config.yaml
49 lines (44 loc) · 1023 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
37
38
39
40
41
42
43
44
45
46
47
48
49
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: check-yaml
- id: check-json
- id: end-of-file-fixer
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
rev: 0.2.3
hooks:
- id: yamlfmt
args:
- --mapping=2
- --sequence=2
- --offset=0
exclude: ^.github/dependabot.yml$
- repo: https://github.com/ambv/black
rev: 24.4.2
hooks:
- id: black
name: Blacken
- repo: local
hooks:
- id: codecov-validator
name: Validate .codecov.yml
description: Validate .codecov.yml using codecov's online validation tool.
entry: ./.ci/codecov-validator.sh
files: >
(?x)^(
.codecov.yml
)$
language: system
- repo: https://github.com/pycqa/flake8
rev: 7.1.0
hooks:
- id: flake8
- repo: https://github.com/timothycrosley/isort
rev: 5.13.2
hooks:
- id: isort
args: [--profile, black, --filter-files, --skip-gitignore]