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