updating gitignore to catch log files (#3549)

Co-authored-by: aviator-app[bot] <48659329+aviator-app[bot]@users.noreply.github.com>
This commit is contained in:
Keepers 2023-06-01 00:06:44 -06:00 committed by GitHub
parent 4b932057de
commit e46e75b7f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 5 deletions

9
.gitignore vendored
View File

@ -8,6 +8,8 @@
# Test binary, built with `go test -c` # Test binary, built with `go test -c`
*.test *.test
test_results/
testlog/
# Output of the go coverage tool, specifically when used with LiteIDE # Output of the go coverage tool, specifically when used with LiteIDE
*.out *.out
@ -21,12 +23,9 @@
.corso.toml .corso.toml
# Logging # Logging
.corso.log *.log
# Build directories # Build directories
/bin /bin
/docker/bin /docker/bin
/website/dist /website/dist
*/test_results/**
*/testlog/**

24
src/.gitignore vendored
View File

@ -1,2 +1,26 @@
dist/ dist/
corso corso
# Test binary, built with `go test -c`
*.test
test_results/
testlog/
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# IDE
.vscode
*.swp
# Standard configuration file names
.corso_test.toml
.corso.toml
# Logging
*.log
# Build directories
/bin
/docker/bin
/website/dist