-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.pre-commit-config.yaml
51 lines (51 loc) · 1.52 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
ci:
skip: [eslint, pyright]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.6.7
hooks:
# Run the linter.
- id: ruff
args: [--fix]
# Run the formatter.
- id: ruff-format
- repo: local
hooks:
- id: pyright
name: "Pyright"
types: [python]
entry: bash -c 'ENV_NAME=dats source backend/_activate_current_env.sh && pyright $@'
language: system
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v9.11.0
hooks:
- id: eslint
files: \.[jt]sx?$ # *.js, *.jsx, *.ts and *.tsx
types: [file]
args: [--max-warnings=0]
additional_dependencies:
- "@tanstack/[email protected]"
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
files: \.([jt]sx?|json)$ # *.js, *.jsx, *.ts, *.tsx, *.json
args: [
--print-width,
"120",
# Without this, prettier will create a `node_modules` folder in the repository root
"--cache-location",
"frontend/node_modules/.cache/prettier",
]