diff --git a/.gitignore b/.gitignore index bffbb23..7a288b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,50 @@ -/third-party -.idea \ No newline at end of file +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out + +# Go workspace file +go.work + +# Dependency directories +vendor/ + +# Build directories +build/ +third_party/ + +# Environment files +*.env +!.env.example + +# macOS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes + +# Windows +ehthumbs.db +Thumbs.db + +# Linux +*~ + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo + +# Logs +*.log +logs/ \ No newline at end of file