Skip to content

Commit 4d77737

Browse files
committed
Initialize repo
0 parents  commit 4d77737

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed

.editorconfig

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
root = true
2+
3+
###########################################################
4+
; common
5+
###########################################################
6+
7+
[*]
8+
charset = utf-8
9+
10+
end_of_line = LF
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
indent_style = space
15+
indent_size = 4
16+
17+
[Makefile]
18+
indent_style = tab
19+
20+
[makefile]
21+
indent_style = tab
22+
23+
[*.{yml,yaml}]
24+
indent_size = 2
25+
26+
[*.toml]
27+
indent_size = 2
28+
29+
[*.go]
30+
indent_style = tab

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.idea/
2+
3+
# Binaries for programs and plugins
4+
*.exe
5+
*.dll
6+
*.so
7+
*.dylib
8+
9+
# Test binary, build with `go test -c`
10+
*.test
11+
12+
# Output of the go coverage tool, specifically when used with LiteIDE
13+
*.out
14+
15+
coverage.html
16+
coverage.out
17+
coverage.txt
18+
19+
.build/
20+
.tarballs/
21+
22+
vendor/
23+
*.coverprofile

LICENSE

Whitespace-only changes.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# go-strftime
2+
3+
High performance C99-compatible `strftime` formatter for Go.
4+
5+
**EXPERIMENTAL** Please DO NOT USE for now.

0 commit comments

Comments
 (0)