Skip to content

Commit 903f8cd

Browse files
authored
Expand .gitignore with common patterns (#129)
* Include rationale for keeping the top-level `.gitignore` file small. * Expand `.gitignore` file specific to the knowledge base. Reason for this change: my local working tree has many untracked files that match these patterns.
1 parent 1cf3dba commit 903f8cd

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
.ruff_cache
1+
# Note: this file only excludes root level entries.
2+
# Subdirectories must use their own .gitignore file to make sure
3+
# that they are complete and can be used outside this repository.
4+
5+
/.ruff_cache
6+
/.vscode

knowledge_base/.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Python
2+
__pycache__/
3+
dist/
4+
build/
5+
.venv/
6+
.pytest_cache/
7+
8+
# Scala/SBT
9+
target/
10+
11+
# Databricks
12+
.databricks
13+
14+
# Editors
15+
.vscode/
16+
17+
# Build artifacts
18+
*.jar
19+
*.class

0 commit comments

Comments
 (0)