-
Notifications
You must be signed in to change notification settings - Fork 135
/
.pre-commit-config.yaml
77 lines (65 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
# pre-commit is a useful tool which can be setup by contributors
# per-repository in a few simple steps given that the
# repository has a config file like this one.
#
# The configured hooks are run on `git commit`. If one of the hooks makes or
# demands a change of the commits contents the commit process is aborted.
# The hooks can also be run manually through `pre-commit run --all-files`.
minimum_pre_commit_version: "1.15"
# The following hooks will be run before a commit is created
repos:
# general stuff
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
# check file system problems
- id: check-case-conflict
- id: check-symlinks
- id: destroyed-symlinks
# unify whitespace and line ending
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: end-of-file-fixer
- id: mixed-line-ending
# sort requirements.txt files
- id: requirements-txt-fixer
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.7.0
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format
# format python files
# - repo: https://github.com/psf/black
# rev: 22.12.0
# hooks:
# - id: black
# files: ^(src/vorta/|tests)
# # run black on code embedded in docstrings
# - repo: https://github.com/asottile/blacken-docs
# rev: v1.12.1
# hooks:
# - id: blacken-docs
# additional_dependencies: [black]
# args:
# [
# --line-length,
# "120",
# --skip-string-normalization,
# --target-version,
# py39,
# ]
# configuration for the pre-commit.ci bot
# only relevant when actually using the bot
ci:
autofix_commit_msg: |
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci and
the `.pre-commit-config.yaml` file in this repository.
autofix_prs: true # default
autoupdate_commit_msg: |
[pre-commit.ci] Autoupdate pre-commit hook versions.
for more information, see https://pre-commit.ci and
the `.pre-commit-config.yaml` file in this repository.
submodules: false # default