-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
98 lines (87 loc) · 3.23 KB
/
.gitignore
File metadata and controls
98 lines (87 loc) · 3.23 KB
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
# =============================================================================
# Scientific Memory — ignore rules
# =============================================================================
# Note: `portal/.generated/corpus-export.json` is intentionally TRACKED so
# `pnpm --dir portal build` and portal CI succeed without a prior
# `just export-portal-data` step. Do not add `portal/.generated/` here unless
# you change CI to generate the bundle first.
# -----------------------------------------------------------------------------
# Lean / Lake
# -----------------------------------------------------------------------------
build/
.lake/
*.olean
# -----------------------------------------------------------------------------
# Python
# -----------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
.uv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
*.egg-info/
.eggs/
*.egg
.coverage
.coverage.*
htmlcov/
.tox/
# -----------------------------------------------------------------------------
# Release / local packaging (`scripts/release_artifacts.sh`, tagged releases)
# -----------------------------------------------------------------------------
dist/
# -----------------------------------------------------------------------------
# Node / monorepo (matches any matching dir name under subprojects)
# -----------------------------------------------------------------------------
node_modules/
.next/
out/
.turbo/
# -----------------------------------------------------------------------------
# Secrets and local overrides (never commit)
# -----------------------------------------------------------------------------
.env
.env.*
!.env.example
# -----------------------------------------------------------------------------
# IDE / OS
# -----------------------------------------------------------------------------
.cursor/
.idea/
.vscode/
.DS_Store
Thumbs.db
*.swp
*~
# -----------------------------------------------------------------------------
# Logs and generic caches
# -----------------------------------------------------------------------------
*.log
.cache/
# -----------------------------------------------------------------------------
# TypeScript incremental build info
# -----------------------------------------------------------------------------
*.tsbuildinfo
# -----------------------------------------------------------------------------
# Property-based testing (Hypothesis)
# -----------------------------------------------------------------------------
.hypothesis/
# -----------------------------------------------------------------------------
# Project-specific generated / local-only paths
# -----------------------------------------------------------------------------
portal/public/generated/
*.local.*
benchmarks/reports/
docs/verso/_build/
tmp/
# -----------------------------------------------------------------------------
# Optional LLM proposal sidecars (non-canonical, generated on-demand)
# Reference fixtures in benchmarks/llm_eval/ use "reference_llm_*_proposals.json" naming
# and are intentionally tracked for regression testing.
# -----------------------------------------------------------------------------
corpus/papers/*/llm_*_proposals.json
corpus/papers/*/suggested_*.json