Skip to content

Commit 6f037f9

Browse files
authored
misc: Disable pre commit renovate autoupdates (#481)
1 parent b0cb3e9 commit 6f037f9

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ repos:
2222
rev: "v0.6.1"
2323
hooks:
2424
- id: biome-check
25+
language: node
2526
additional_dependencies: ["@biomejs/[email protected]"]
2627
exclude: (src/codemods/eval)|(tests/unit/skills/snapshots)|(tests/unit/codegen/sdk/output)|(tests/integration/verified_codemods)|(docs/samples)
2728
- repo: https://github.com/MarcoGorelli/cython-lint
@@ -62,6 +63,7 @@ repos:
6263
rev: v2.4.1
6364
hooks:
6465
- id: codespell
66+
language: python
6567
additional_dependencies:
6668
- tomli
6769
files: "docs/.*/.*.mdx"
@@ -103,6 +105,7 @@ repos:
103105
rev: 0.7.22 # Use the ref you want to point at
104106
hooks:
105107
- id: mdformat
108+
language: python
106109
# Optionally add plugins
107110
additional_dependencies:
108111
- mdformat-gfm

docs/tutorials/build-mcp.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ from codegen.extensions.tools.semantic_search import semantic_search
5454
@mcp.tool('codebase_semantic_search', "search codebase with the provided query")
5555
def search(query: Annotated[str, "search query to run against codebase"]):
5656
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
5858
results = semantic_search(codebase=codebase, query=query)
5959
return results
6060

@@ -72,4 +72,4 @@ mcp dev server.py
7272
If you'd like to integrate this into an IDE checkout out this [setup guide](/introduction/ide-usage#mcp-server-setup)
7373

7474
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

renovate.json5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
":automergeLinters",
66
":automergeMinor",
77
":automergePatch",
8-
":enablePreCommit",
8+
// ":enablePreCommit",
99
":maintainLockFilesWeekly",
10-
":automergeLinters",
11-
"group:githubArtifactActions"
10+
"group:githubArtifactActions",
11+
"schedule:automergeWeekly"
1212
],
1313
lockFileMaintenance: {
1414
enabled: true,

0 commit comments

Comments
 (0)