1
0
Fork 0

Added boilerplate

This commit is contained in:
マリウス 2022-12-28 21:11:23 -05:00
commit dd909ebeb8
No known key found for this signature in database
GPG Key ID: 272ED814BF63261F
2 changed files with 24 additions and 0 deletions

21
.editorconfig Normal file
View File

@ -0,0 +1,21 @@
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
insert_final_newline = true
max_line = 80
[*.{md,markdown}]
trim_trailing_whitespace = false
[*.go]
indent_style = tab
indent_size = 2
[{Makefile,Makefile.*}]
indent_style = tab
indent_size = 2

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/mrusme/gobbs
go 1.19