From e46e75b7f212a31bbae85e979b4b1c0eb5e57d46 Mon Sep 17 00:00:00 2001 From: Keepers Date: Thu, 1 Jun 2023 00:06:44 -0600 Subject: [PATCH] updating gitignore to catch log files (#3549) Co-authored-by: aviator-app[bot] <48659329+aviator-app[bot]@users.noreply.github.com> --- .gitignore | 9 ++++----- src/.gitignore | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3f0ba69bf..bdda0724b 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ # Test binary, built with `go test -c` *.test +test_results/ +testlog/ # Output of the go coverage tool, specifically when used with LiteIDE *.out @@ -21,12 +23,9 @@ .corso.toml # Logging -.corso.log +*.log # Build directories /bin /docker/bin -/website/dist - -*/test_results/** -*/testlog/** \ No newline at end of file +/website/dist \ No newline at end of file diff --git a/src/.gitignore b/src/.gitignore index bca1e9bf2..b06b4dde6 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -1,2 +1,26 @@ dist/ 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