Skip to content

Commit c483dfc

Browse files
committed
fix: update .gitignore to properly ignore temp files
1 parent 74a63c7 commit c483dfc

1 file changed

Lines changed: 31 additions & 8 deletions

File tree

.gitignore

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,46 @@
11
# IDE and Editor files
22
*.iml
3-
.idea
43
*.bak
5-
.vscode/**/*
6-
.vscode/launch.json
4+
.idea
5+
.cursor
6+
.qoder
7+
.vscode
78

89
# Configuration and local files
9-
.config/**/*
10+
.config
1011
config.yaml
1112
config.json
1213

13-
# Documentation and example files
14-
logic.md
15-
Dockerfile.example
16-
1714
# Test and coverage files
1815
fmtcoverage.html
1916

2017
# SonarLint files
2118
.sonarlint
2219
.sonarlint/**/*
2320

21+
# Other documentation files
22+
*.txt
23+
*.pdf
24+
*.doc
25+
*.docx
26+
*.ppt
27+
*.pptx
28+
*.xls
29+
*.xlsx
30+
31+
# Additional documentation
32+
TODO
33+
34+
!docs/**/*.md
35+
!README.md
36+
!CHANGELOG.md
37+
38+
# Binary files
39+
*.exe
40+
41+
# Example files
42+
examples
43+
.examples
44+
45+
# Log files
46+
*.log

0 commit comments

Comments
 (0)