summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 2098296f582e0bd3d1d32d348aea9af4f1597745 (plain)
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
exclude: '^djangoproject\/static\/(css\/|fonts\/|img\/|robots).*$'
default_language_version:
    python: python3
repos:
    - repo: https://github.com/pre-commit/pre-commit-hooks
      rev: v6.0.0
      hooks:
          - id: check-added-large-files
            args: ["--maxkb=1024"]
          - id: check-case-conflict
          - id: check-docstring-first
          - id: check-executables-have-shebangs
          - id: check-json
          - id: check-merge-conflict
          - id: check-shebang-scripts-are-executable
          - id: check-toml
          - id: check-yaml
            args: ["--allow-multiple-documents"]
          - id: debug-statements
          - id: detect-private-key
          - id: end-of-file-fixer
            exclude: '(^djangoproject\/static\/js\/lib\/.*$)'
            exclude_types: [json, sql]
          - id: file-contents-sorter
            files: ^(requirements/\w*.txt)$
            args: ["--ignore-case"]
          - id: fix-byte-order-marker
          - id: mixed-line-ending
          - id: trailing-whitespace

    - repo: https://github.com/asottile/pyupgrade
      rev: v3.21.2
      hooks:
          - id: pyupgrade
            args: [--py312]

    - repo: https://github.com/adamchainz/django-upgrade
      rev: 1.29.1
      hooks:
          - id: django-upgrade
            args: [--target-version, "6.0"]

    - repo: https://github.com/psf/black-pre-commit-mirror
      rev: 25.12.0
      hooks:
          - id: black
            args: ["--target-version=py312"]

    - repo: https://github.com/rbubley/mirrors-prettier
      rev: v3.7.4
      hooks:
          - id: prettier
            # https://github.com/rbubley/mirrors-prettier/issues/3
            language_version: 24.15.0
            exclude_types: [html, json, scss]
            exclude: '(^djangoproject\/static\/js\/lib\/.*$|^checklists\/templates\/.*$)'

    - repo: https://github.com/pycqa/isort
      rev: 7.0.0
      hooks:
          - id: isort

    - repo: https://github.com/pycqa/flake8
      rev: 7.3.0
      hooks:
          - id: flake8

    - repo: https://github.com/rtts/djhtml
      rev: 3.0.10
      hooks:
          - id: djhtml
            files: .*/templates/.*\.html$

    - repo: https://github.com/mrtazz/checkmake.git
      rev: 0.2.2
      hooks:
          - id: checkmake
    - repo: https://github.com/adamchainz/djade-pre-commit
      rev: 1.7.0
      hooks:
          - id: djade
            args: [--target-version, "6.0"]