From a37888eddf0bebdc032091c87a504db3e698e139 Mon Sep 17 00:00:00 2001 From: Kylesoda <249518290+kylesoda@users.noreply.github.com> Date: Mon, 30 Mar 2026 18:30:46 -0500 Subject: [PATCH] add .temp directory to .gitignore file --- .air.toml | 2 +- .gitignore | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.air.toml b/.air.toml index 9e2cfaa..f4a74cf 100644 --- a/.air.toml +++ b/.air.toml @@ -7,7 +7,7 @@ args_bin = [] bin = "./tmp/main" cmd = "go build -o ./tmp/main ." delay = 1000 -exclude_dir = ["assets", "tmp", "vendor", "testdata"] +exclude_dir = ["assets", "tmp", "vendor", "testdata", ".temp"] exclude_file = [] exclude_regex = ["_test.go"] exclude_unchanged = false diff --git a/.gitignore b/.gitignore index e5d6558..cd7593f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ tmp/**/* +.temp/**/*