From 39e60d6278648d0e02c2bca830ad63cacbf60538 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sun, 26 Feb 2017 20:14:36 -0300 Subject: [PATCH] Initial commit --- .editorconfig | 14 ++++++++++++++ .gitattributes | 1 + .gitignore | 14 ++++++++++++++ task.go | 1 + 4 files changed, 30 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 task.go diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..d2b5406f63 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# editorconfig.org + +root = true + +[*] +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +indent_style = tab +indent_size = 8 + +[*.yml] +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..176a458f94 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..a1338d6851 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# 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/ diff --git a/task.go b/task.go new file mode 100644 index 0000000000..b028dfdfc6 --- /dev/null +++ b/task.go @@ -0,0 +1 @@ +package task