swarm repositories / source
aboutsummaryrefslogtreecommitdiff
path: root/template/fresh/check.py
diff options
context:
space:
mode:
authormain <main@swarm.moe>2026-06-13 12:10:55 -0400
committermain <main@swarm.moe>2026-06-13 12:10:55 -0400
commit4735637ead09c4e8d4b9a0409d7ea2538eb9cb40 (patch)
tree344558bb4616293e7f9f3bcdc4dae6cbbcc0b608 /template/fresh/check.py
parent89dba1d9c0034e6bc544b0f002a65ffe0b29e7dc (diff)
downloadrust_starter-4735637ead09c4e8d4b9a0409d7ea2538eb9cb40.zip
Update Rust starter bootstrap posture
Install project-local Cargo target-dir guidance and template config, keep Cargo output under /data/main/cargo-target/<project-slug>, preserve the global shared target fallback, and raise the source-file cap to 3000 lines.
Diffstat (limited to 'template/fresh/check.py')
-rw-r--r--template/fresh/check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/fresh/check.py b/template/fresh/check.py
index 424497e..2ae2acd 100644
--- a/template/fresh/check.py
+++ b/template/fresh/check.py
@@ -12,7 +12,7 @@ from pathlib import PurePosixPath
ROOT = Path(__file__).resolve().parent
WORKSPACE_MANIFEST = ROOT / "Cargo.toml"
-DEFAULT_MAX_SOURCE_FILE_LINES = 2500
+DEFAULT_MAX_SOURCE_FILE_LINES = 3000
DEFAULT_SOURCE_FILE_INCLUDE = ("*.rs", "**/*.rs")
IGNORED_SOURCE_DIRS = frozenset(
{".direnv", ".git", ".hg", ".jj", ".svn", "__pycache__", "node_modules", "target", "vendor"}