-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
86 lines (77 loc) · 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
78
79
80
81
82
83
84
85
86
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-merge-conflict
- id: check-symlinks
- id: debug-statements
- id: end-of-file-fixer
- id: no-commit-to-branch
args: [--branch, main]
- id: trailing-whitespace
- repo: https://github.com/asottile/add-trailing-comma.git
rev: v3.1.0
hooks:
- id: add-trailing-comma
args:
- --py36-plus
- repo: https://github.com/Lucas-C/pre-commit-hooks.git
rev: v1.5.5
hooks:
- id: remove-tabs
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v4.0.0-alpha.8
hooks:
- id: prettier
always_run: true
additional_dependencies:
- prettier
- prettier-plugin-toml
- prettier-plugin-sort-json
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.7.2"
hooks:
- id: ruff
args:
- "--exit-non-zero-on-fix"
- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.15.2
hooks:
- id: cspell
name: Spell check with cspell
- repo: https://github.com/terrencepreilly/darglint.git
rev: v1.8.1
hooks:
- id: darglint
- repo: https://github.com/pycqa/pylint.git
rev: v3.3.1
hooks:
- id: pylint
args:
- --output-format=colorized
- --disable=too-many-positional-arguments
additional_dependencies:
- configargparse
- pytest
- requests
- ruamel.yaml
- single_source
- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.13.0
hooks:
- id: mypy
additional_dependencies:
- pytest
- types-colorama
- types-Pygments
- types-requests
- types-setuptools
args:
- --python-version=3.10
pass_filenames: false