-
Notifications
You must be signed in to change notification settings - Fork 0
/
goose.yaml
115 lines (101 loc) · 2.2 KB
/
goose.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
environments:
- id: python
ecosystem:
language: python
version: "3.13"
dependencies:
- ruff
- pre-commit-hooks
- pip-audit
- check-jsonschema
- id: node
ecosystem:
language: node
version: "23.0.0"
dependencies:
- prettier
- id: type-check
ecosystem:
language: python
version: "3.13"
dependencies:
- mypy
- pydantic
- types-pyyaml
- typer
- identify
- rich
- pytest
hooks:
- id: pip-audit
environment: python
command: pip-audit
args:
- --require-hashes
- --disable-pip
- --requirement=requirements.txt
parameterize: false
read_only: true
- id: prettier
environment: node
command: prettier
types: [markdown]
args:
- --write
- --ignore-unknown
- --parser=markdown
- --print-width=88
- --prose-wrap=always
- id: mypy
environment: type-check
command: mypy
env_vars:
FORCE_COLOR: "1"
COLUMNS: "150"
read_only: true
parameterize: false
- id: check-case-conflict
environment: python
command: check-case-conflict
read_only: true
- id: check-merge-conflict
environment: python
command: check-merge-conflict
read_only: true
types: [text]
- id: python-debug-statements
environment: python
command: debug-statement-hook
read_only: true
types: [python]
- id: detect-private-key
environment: python
command: detect-private-key
read_only: true
types: [text]
- id: end-of-file-fixer
environment: python
command: end-of-file-fixer
types: [text]
- id: trailing-whitespace-fixer
environment: python
command: trailing-whitespace-fixer
types: [text]
- id: ruff
environment: python
command: ruff
args: [check, --force-exclude, --fix]
types: [python]
- id: ruff-format
environment: python
command: ruff
args: [format, --force-exclude]
types: [python]
- id: check-github-workflows
environment: python
command: check-jsonschema
read_only: true
args: ["--builtin-schema", "vendor.github-workflows"]
types: [yaml]
limit:
- "^.github/workflows/"