File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 22
22
rev : " v0.6.1"
23
23
hooks :
24
24
- id : biome-check
25
+ language : node
25
26
additional_dependencies :
["@biomejs/[email protected] "]
26
27
exclude : (src/codemods/eval)|(tests/unit/skills/snapshots)|(tests/unit/codegen/sdk/output)|(tests/integration/verified_codemods)|(docs/samples)
27
28
- repo : https://github.com/MarcoGorelli/cython-lint
62
63
rev : v2.4.1
63
64
hooks :
64
65
- id : codespell
66
+ language : python
65
67
additional_dependencies :
66
68
- tomli
67
69
files : " docs/.*/.*.mdx"
@@ -103,6 +105,7 @@ repos:
103
105
rev : 0.7.22 # Use the ref you want to point at
104
106
hooks :
105
107
- id : mdformat
108
+ language : python
106
109
# Optionally add plugins
107
110
additional_dependencies :
108
111
- mdformat-gfm
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ from codegen.extensions.tools.semantic_search import semantic_search
54
54
@mcp.tool (' codebase_semantic_search' , " search codebase with the provided query" )
55
55
def search (query : Annotated[str , " search query to run against codebase" ]):
56
56
codebase = Codebase(" provide location to codebase" , programming_language = " provide codebase Language" )
57
- # use the semantic search tool from codegen.extenstions .tools OR write your own
57
+ # use the semantic search tool from codegen.extensions .tools OR write your own
58
58
results = semantic_search(codebase = codebase, query = query)
59
59
return results
60
60
@@ -72,4 +72,4 @@ mcp dev server.py
72
72
If you'd like to integrate this into an IDE checkout out this [ setup guide] ( /introduction/ide-usage#mcp-server-setup )
73
73
74
74
And that's a wrap, chime in at our [ community
75
- Slack] ( https://community.codegen.com ) if you have quesions or ideas for additional MCP tools/capabilities
75
+ Slack] ( https://community.codegen.com ) if you have questions or ideas for additional MCP tools/capabilities
Original file line number Diff line number Diff line change 5
5
":automergeLinters" ,
6
6
":automergeMinor" ,
7
7
":automergePatch" ,
8
- ":enablePreCommit" ,
8
+ // ":enablePreCommit",
9
9
":maintainLockFilesWeekly" ,
10
- ":automergeLinters " ,
11
- "group:githubArtifactActions "
10
+ "group:githubArtifactActions " ,
11
+ "schedule:automergeWeekly "
12
12
] ,
13
13
lockFileMaintenance : {
14
14
enabled : true ,
You can’t perform that action at this time.
0 commit comments