37 lines
284 B
Plaintext
37 lines
284 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
LICENSE
|
|
|
|
# Build artifacts
|
|
argparse-builder
|
|
argparse-builder-*
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*_test.go
|
|
test_*.go
|
|
|
|
# Development
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temp files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|