Skip to content

Commit d285fcf

Browse files
jasperfmistral-vibe
andcommitted
chore: update .gitignore with comprehensive rules
- Add pr-create.sh to ignored files - Add macOS system files (.DS_Store, .AppleDouble, etc.) - Add IDE directories (.idea/, .vscode/) - Add general patterns (*.log, *.tmp, *.swp, etc.) - Add testing and build cache directories Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
1 parent 2b709c0 commit d285fcf

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,50 @@
1+
# Dependencies
12
/vendor/
3+
4+
# macOS system files
5+
.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
._*
9+
.DocumentRevisions-V100
10+
.fseventsd
11+
.Spotlight-V100
12+
.TemporaryItems
13+
.Trashes
14+
.VolumeIcon.icns
15+
.com.apple.timemachine.donotpresent
16+
17+
# IDE
18+
.idea/
19+
.vscode/
20+
*.swp
21+
*.swo
22+
*~
23+
24+
# OS generated files
25+
*.un~
26+
*.tmp
27+
*.log
28+
29+
# Shell scripts
30+
pr-create.sh
31+
32+
# Local env files
33+
.env
34+
.env.local
35+
.env.*.local
36+
37+
# Build and cache
38+
*.cache
39+
/build/
40+
/dist/
41+
/cache/
42+
43+
# Testing
44+
/coverage/
45+
.phpunit.result.cache
46+
phpunit.xml
47+
48+
# General
49+
*.bak
50+
*.orig

0 commit comments

Comments
 (0)