Skip to content

Commit 150173b

Browse files
committedMar 18, 2025
Add files to .gitignore and order imports
Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
1 parent a8e0358 commit 150173b

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed
 

‎.gitignore

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# If you prefer the allow list template instead of the deny list, see community template:
2-
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3-
#
41
# Binaries for programs and plugins
52
*.exe
63
*.exe~
@@ -23,3 +20,16 @@ go.work.sum
2320

2421
# env file
2522
.env
23+
24+
# Go build output directories
25+
/bin/
26+
27+
# IDE and text editor files
28+
.vscode/
29+
.idea/
30+
31+
# macOS-specific files
32+
.DS_Store
33+
34+
# Logs
35+
*.log

‎tests/odatasql_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package tests
22

33
import (
4-
"github.com/maxlambrecht/odatasql"
54
"testing"
5+
6+
"github.com/maxlambrecht/odatasql"
67
)
78

89
func TestConvert(t *testing.T) {

0 commit comments

Comments
 (0)