Skip to content

Commit 7bec239

Browse files
committedFeb 16, 2024
chore: project setup
1 parent 445940c commit 7bec239

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed
 

‎.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
charset = utf-8
7+
8+
[{Makefile,go.mod}]
9+
indent_style = tab
10+
indent_size = 4
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

‎.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
go.sum merge=union

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@
1919

2020
# Go workspace file
2121
go.work
22+
23+
.vscode/

‎go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/vitorsalgado/binL
2+
3+
go 1.22.0

0 commit comments

Comments
 (0)
Please sign in to comment.