From 469714c49f2db8345eca8dca4dff5477ff0c921d Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Mon, 22 Dec 2014 16:58:29 +0200 Subject: [PATCH] add editorconfig and jshintrc --- .editorconfig | 13 +++++++++++++ .jshintrc | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 .editorconfig create mode 100644 .jshintrc diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e1e62b8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..a08e606 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,3 @@ +{ + "browserify": true +}