-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
58 lines (58 loc) · 1.56 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-ast
- id: check-added-large-files
- id: check-merge-conflict
- id: check-case-conflict
- id: check-docstring-first
- id: check-json
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- id: detect-private-key
- id: detect-aws-credentials
args:
- --allow-missing-credentials
- repo: local
hooks:
- id: ruff
name: ruff
entry: poetry run ruff check --fix
language: system
types: [ python ]
- id: black
name: black
entry: poetry run black
language: system
types: [ python ]
- id: mypy
name: mypy
entry: poetry run mypy .
require_serial: true
language: system
types: [ python ]
pass_filenames: false
- id: kacl-verify
name: kacl-verify
entry: poetry run kacl-cli verify
language: system
files: 'CHANGELOG.md'
pass_filenames: false
- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v6.2.0
hooks:
- id: cspell
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
hooks:
- id: markdownlint-fix
args: [
"--ignore", "docs/index.md",
"--ignore", "docs/changelog.md",
"--ignore", "docs/code.md",
"--ignore", ".github/pull_request_template.md"
]