-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from linycken013127/dev
v0.2.0 Release
- Loading branch information
Showing
78 changed files
with
3,425 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; https://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[{Makefile,go.mod,go.sum,*.go,.gitmodules}] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.md] | ||
indent_size = 4 | ||
trim_trailing_whitespace = false | ||
|
||
[Dockerfile] | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Treat all files in the Go repo as binary, with no git magic updating | ||
# line endings. This produces predictable results in different environments. | ||
# | ||
# Windows users contributing to Go will need to use a modern version | ||
# of git and editors capable of LF line endings. | ||
# | ||
# Windows .bat files are known to have multiple bugs when run with LF | ||
# endings, and so they are checked in with CRLF endings, with a test | ||
# in test/winbatch.go to catch problems. (See golang.org/issue/37791.) | ||
# | ||
# We'll prevent accidental CRLF line endings from entering the repo | ||
# via the git-codereview gofmt checks and tests. | ||
# | ||
# See golang.org/issue/9281. | ||
|
||
* -text | ||
*.go eol=lf diff=golang | ||
*.ts diff=typescript | ||
*.tsx diff=typescript | ||
*.json diff=json | ||
*.sql diff=sql | ||
*.md text diff=markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Backend | ||
|
||
Backend/cmd/app/docs/swagger.* | ||
Backend/.env | ||
/.idea/* | ||
vendor/ |
Oops, something went wrong.