diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c289584 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +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 + +[{Makefile,Makefile.*}] +indent_style = tab +indent_size = 2 diff --git a/.gitignore b/.gitignore index 66fd13c..b1261e0 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,5 @@ # Dependency directories (remove the comment below to include it) # vendor/ + +/zeit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..98773c2 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/mrusme/zeit + +go 1.15 diff --git a/zeit.go b/zeit.go new file mode 100644 index 0000000..fb50ccf --- /dev/null +++ b/zeit.go @@ -0,0 +1,15 @@ +package main + +import ( + // "fmt" + "os" + // "context" + // "time" + // "log" + // "flag" +) + + +func main() { + os.Exit(0) +}