Skip to content

Commit 40fe7e1

Browse files
authored
Update .gitignore to exclude build and test files
Added various file types and directories to .gitignore for better exclusion of build artifacts, test files, and editor configurations.
1 parent baec5ca commit 40fe7e1

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

.gitignore

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
1-
.env
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Code coverage profiles and other test artifacts
12+
*.out
13+
coverage.*
14+
*.coverprofile
15+
profile.cov
16+
17+
# Dependency directories (remove the comment below to include it)
18+
# vendor/
19+
20+
# Go workspace file
21+
go.work
22+
go.work.sum
23+
24+
# env file
25+
*.env
26+
27+
# Editor/IDE
28+
# .idea/
29+
.vscode/
30+
31+
# Exclude git folders
232
.git*
333
!.github
4-
5-
node_modules
6-
.docusaurus

0 commit comments

Comments
 (0)