-
Notifications
You must be signed in to change notification settings - Fork 0
/
goose.yaml
115 lines (100 loc) · 2.31 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
- editorconfig-checker
- blacken-docs
- check-jsonschema
- id: check-manifest
ecosystem:
language: python
version: "3.13"
dependencies:
- check-manifest
- setuptools==71.1.0
- setuptools-scm==8.1.0
- wheel==0.43.0
- id: node
ecosystem:
language: node
version: "23.0.0"
dependencies:
- prettier
hooks:
- id: check-manifest
environment: check-manifest
command: check-manifest
parameterize: false
read_only: true
args: [--no-build-isolation]
- id: prettier
environment: node
command: prettier
types: [markdown]
args:
- --write
- --ignore-unknown
- --parser=markdown
- --print-width=88
- --prose-wrap=always
- 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: editorconfig-checker
environment: python
command: ec
args: [-disable-indent-size]
types: [text]
read_only: true
- id: ruff-check
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: blacken-docs
environment: python
command: blacken-docs
types: [markdown, python]
- id: check-github-workflows
environment: python
command: check-jsonschema
read_only: true
args: ["--builtin-schema", "vendor.github-workflows"]
types: [yaml]
exclude:
- codecov.yml
- goose.yaml
- dependabot.yaml