generated from softwareone-platform/swo-extension-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
46 lines (42 loc) · 1.14 KB
/
.pre-commit-config.yaml
File metadata and controls
46 lines (42 loc) · 1.14 KB
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
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.6
hooks:
- id: ruff-check
- id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-merge-conflict
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: no-commit-to-branch
args: [--pattern, "^release/.*"]
- id: detect-private-key
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.9.20
hooks:
- id: uv-lock
- repo: https://github.com/PyCQA/flake8
rev: 7.3.0
hooks:
- id: flake8
additional_dependencies:
[
flake8-aaa==0.17.*,
flake8-pyproject==1.2.*,
wemake-python-styleguide==1.6.*,
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.19.1
hooks:
- id: mypy
args: ["--config-file=pyproject.toml", "."]
pass_filenames: false
additional_dependencies:
- mpt_api_client==5.0.*
- typer==0.21.*
- types-requests==2.32.*
- pyairtable==3.3.*