| 123456789101112131415161718192021222324252627 |
- # Build directory
- builddir/
- # Git
- .git/
- .gitignore
- # IDE/Editor files
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- # Documentation
- *.md
- !README.md
- # VAPI files (not needed at runtime, only build)
- vapi/
- # Any compiled objects
- *.o
- *.a
- # Test files
- tests/
|