-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
83 lines (83 loc) · 2.28 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
---
exclude: ^(node_modules|static)/.+$
repos:
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
- id: add-trailing-comma
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: forbid-crlf
- id: remove-crlf
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-merge-conflict
- id: pretty-format-json
args: [--no-ensure-ascii, --autofix]
- id: check-toml
- id: check-yaml
args: [--unsafe]
- id: check-case-conflict
- id: trailing-whitespace
- repo: https://github.com/ambv/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: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/adamchainz/django-upgrade
rev: "1.22.1"
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
- repo: https://github.com/adrienverge/yamllint
rev: 'v1.35.1'
hooks:
- id: yamllint
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.42.0
hooks:
- id: markdownlint-fix
args: [--disable, MD013]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
hooks:
- id: mypy
exclude: "migrations"
additional_dependencies:
- "django-admin-interface"
- "django-admin-sortable2"
- "django-colorfield"
- "django-breeze"
- "django-environ"
- "django-extensions"
- "django-cachalot"
- "django-query-inspector"
- "django-modeltranslation"
- "djangorestframework"
- "easy-thumbnails"
- "pillow"
- "pint"
- "psycopg2-binary"
- "recipe-scrapers>=15.0.0"
- "django-stubs"
- "django-stubs-ext[compatible-mypy]"
- "djangorestframework-stubs[compatible-mypy]"
- "pytest"
- "types-requests"
- "types-pyyaml"
- repo: local
hooks:
- id: eslint
language: system
name: Run ESLint
entry: yarn eslint --fix
types: [file]
files: \.(ts|js|vue)$