File size: 737 Bytes
346533a
de89ca4
346533a
de89ca4
 
 
346533a
de89ca4
1d20b52
346533a
de89ca4
 
 
1d20b52
346533a
de89ca4
 
 
 
 
 
 
 
 
 
 
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
ci:
  autofix_commit_msg: "style: auto fix by pre-commit hooks"
  autofix_prs: true
  autoupdate_branch: main
  autoupdate_schedule: quarterly
  autoupdate_commit_msg: "chore: auto update by pre-commit hooks"
repos:
  - repo: https://github.com/astral-sh/ruff-pre-commit
    rev: v0.3.5
    hooks:
      - id: ruff
        args: [--fix, --exit-non-zero-on-fix]
        stages: [commit]
      - id: ruff-format

  - repo: https://github.com/pre-commit/mirrors-prettier
    rev: v4.0.0-alpha.8
    hooks:
      - id: prettier
        types_or: [javascript, jsx, ts, tsx, markdown, yaml, json]
        stages: [commit]
        exclude: |
          (?x)^(
              resources/resource_list.json|
              docs/memes.md
          )$