Skip to content

Commit d596ef4

Browse files
committed
chore: improve .gitignore to exclude generated files
- Exclude generated Power Query files (*_PowerQuery.m) - Exclude backup files (*.backup.*) - Exclude debug extraction and sync folders - Better organization for maintainability
1 parent 45a85c2 commit d596ef4

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.gitignore

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,24 @@ dist
33
node_modules
44
.vscode-test/
55
*.vsix
6-
test/*
6+
test/out/
7+
test/.vscode-test/
8+
9+
# Generated Power Query files (extracted from Excel)
10+
*_PowerQuery.m
11+
12+
# Testing folder with large files and sensitive data
13+
temp-testing/
14+
15+
# Test backup files
16+
*.backup.*
17+
test/**/*.backup.*
18+
test/fixtures/*.backup.*
19+
20+
# Debug extraction folders
21+
*_debug_extraction/
22+
test/fixtures/*_debug_extraction/
23+
24+
# Debug sync folders
25+
debug_sync/
26+
test/fixtures/debug_sync/

0 commit comments

Comments
 (0)