We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 39e60d6Copy full SHA for 39e60d6
.editorconfig
@@ -0,0 +1,14 @@
1
+# editorconfig.org
2
+
3
+root = true
4
5
+[*]
6
+insert_final_newline = true
7
+charset = utf-8
8
+trim_trailing_whitespace = true
9
+indent_style = tab
10
+indent_size = 8
11
12
+[*.yml]
13
+indent_style = space
14
+indent_size = 2
.gitattributes
@@ -0,0 +1 @@
+* text=auto
.gitignore
+# Binaries for programs and plugins
+*.exe
+*.dll
+*.so
+*.dylib
+# Test binary, build with `go test -c`
+*.test
+# Output of the go coverage tool, specifically when used with LiteIDE
+*.out
+# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
+.glide/
task.go
+package task
0 commit comments