-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
65 lines (60 loc) · 1.45 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
64
65
---
minimum_pre_commit_version: 3.3.3
repos:
# commit-msg hooks
# ----------
# Conventional Commit message checker (commitizen)
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.30.1
hooks:
- id: commitizen
stages:
- commit-msg
# pre-commit hooks
# ----------
# Standard pre-commit rules
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: detect-private-key
- id: end-of-file-fixer
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=md
# Black (uncompromising) Python code formatter
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
args:
- --target-version
- py312
# MyPy
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
hooks:
- id: mypy
files: ^operator
# Pylint
- repo: https://github.com/pycqa/pylint
rev: v3.3.1
hooks:
- id: pylint
files: ^operator
# YAML Lint
# We have to adjust this hook, which looks for yaml files,
# because some of our files are 'disguised' and not found by
# 'identify', used by pre-commit. So we basically say...
# All files that end '.yaml' or '.yaml.j2'
# See https://pre-commit.com/#filtering-files-with-types
- repo: https://github.com/adrienverge/yamllint
rev: v1.35.1
hooks:
- id: yamllint
types:
- file
files: (\.yaml|\.yaml.j2)$