From 65900f34651527d17108a24e379a13b248fe6503 Mon Sep 17 00:00:00 2001 From: Joshua Appelman Date: Sat, 21 Jun 2014 02:08:58 +0200 Subject: [PATCH] Format .jshintrc in the same style as the code. I noticed the .jshintrc uses tabs for indentation where main.js uses spaces, as does the .editconfig specify to use. --- .jshintrc | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.jshintrc b/.jshintrc index 011329c0..04225b5c 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,19 +1,19 @@ { - "node": true, - "browser": true, - "esnext": true, - "bitwise": true, - "camelcase": true, - "curly": true, - "eqeqeq": true, - "immed": true, - "indent": 4, - "newcap": true, - "noarg": true, - "quotmark": "single", - "undef": true, - "unused": "vars", - "strict": true, - "trailing": true, - "smarttabs": true + "node": true, + "browser": true, + "esnext": true, + "bitwise": true, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "immed": true, + "indent": 4, + "newcap": true, + "noarg": true, + "quotmark": "single", + "undef": true, + "unused": "vars", + "strict": true, + "trailing": true, + "smarttabs": true }