Skip to content

Commit 6e69ada

Browse files
bkrabachclaude
andauthored
feat: Add generic config improvements (#83)
Includes several configuration improvements applicable to all projects: Config improvements: - .gitignore: Add database files (*.db, *.sqlite*) and JSONL logs - .vscode/settings.json: Increase submodule detection limit, add spellcheck word - pyproject.toml: Use generic **/.venv/** pattern (was scenarios/*/.venv/**) - tests/terminal_bench: Add type ignore for optional dependency These changes improve the development experience across all projects. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <[email protected]>
1 parent c7b9e0a commit 6e69ada

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ ai_working/tmp
5353
**/*sec.endpointdlp
5454
**/*:sec.endpointdlp
5555

56+
# Databases
57+
*.db
58+
*.sqlite
59+
*.sqlite3
60+
5661
# Default data directory
5762
.data/
5863

@@ -61,3 +66,4 @@ ai_working/tmp
6166

6267
# Smoke test runtime logs
6368
.smoke_test_data/data
69+
*.log.jsonl

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"files.eol": "\n",
1414
"files.trimTrailingWhitespace": true,
1515

16+
// === GIT CONFIGURATION ===
17+
"git.detectSubmodulesLimit": 50,
18+
1619
// === GIT/GITHUB CONFIGURATION ===
1720
"githubPullRequests.defaultMergeMethod": "squash",
1821

@@ -137,6 +140,7 @@
137140
"markdownify",
138141
"metadatas",
139142
"mixtape",
143+
"monokai",
140144
"networkidle",
141145
"ollama",
142146
"pathlib",

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ venvPath = "."
5454
venv = ".venv"
5555
exclude = [
5656
"**/__pycache__",
57-
".venv/**",
58-
"scenarios/*/.venv/**",
57+
"**/.venv/**",
5958
"node_modules/**",
6059
".git/**",
6160
".ruff_cache/**",

tests/terminal_bench/run_terminal_bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from datetime import datetime
44
from pathlib import Path
55

6-
from terminal_bench import Harness
6+
from terminal_bench import Harness # type: ignore[import-untyped]
77

88

99
def main(agent: str) -> None:

0 commit comments

Comments
 (0)