From 69d95c6fbf3aa8c07aeb401ca04f9347517b1a67 Mon Sep 17 00:00:00 2001 From: Jakob Schrettenbrunner Date: Sun, 18 Jun 2017 23:59:30 +0200 Subject: [PATCH] add editorconfig and gitignore --- .editorconfig | 11 +++++++++++ .gitignore | 9 +++++++++ 2 files changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e99c7f5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false \ No newline at end of file diff --git a/.gitignore b/.gitignore index a1338d6..04f1bc3 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,12 @@ # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 .glide/ + +# dep related files and folders +/vendor + +# ignore logfiles (/* so the .gitkeep override works) +/logs/* + +# Keep all gitkeep files (This needs to stay at the bottom) +!.gitkeep