posts-go/posts/2022-08-10-gitignore.md

37 lines
252 B
Markdown

# gitignore
My quick check for `.gitignore`.
## Base
```txt
# macOS
.DS_Store
# Windows
*.exe
# IntelliJ
.idea/
# VSCode
.vscode/
```
## Go
```txt
# Go
# Test coverage
coverage.out
# Should ignore vendor
vendor
```
## Python
```txt
venv
```