-
Notifications
You must be signed in to change notification settings - Fork 292
/
.pre-commit-config.yaml
48 lines (48 loc) · 1.37 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
ci:
skip: ["eslint"]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.5
hooks:
- id: ruff
args: ["--fix"]
- id: ruff-format
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.21
hooks:
- id: mdformat
args: ["--wrap", "80"]
additional_dependencies:
- mdformat-gfm
- repo: local
hooks:
- id: prettier
name: prettier
language: node
entry: prettier --write --list-different
types_or: ["css", "javascript", "json", "svelte", "yaml"]
require_serial: true
additional_dependencies:
- "prettier@3.4.2"
- "prettier-plugin-svelte@3.3.2"
- "svelte@5.16.0"
- id: stylelint
name: stylelint
language: node
entry: stylelint --fix
types_or: ["css", "svelte"]
require_serial: true
additional_dependencies:
- "stylelint@16.12.0"
- "stylelint-config-recess-order@5.1.1"
- "stylelint-config-standard@36.0.1"
- "postcss-html@1.7.0"
- id: eslint
name: eslint
language: node
entry:
./frontend/node_modules/eslint/bin/eslint.js --config
frontend/eslint.config.mjs --fix --max-warnings 0
require_serial: true
types_or: ["javascript", "svelte", "ts"]
files: "^frontend/"