From 5015acb072fbd7a786e46e00192db416ebf617eb Mon Sep 17 00:00:00 2001
From: Simon Egersand <s.egersand@gmail.com>
Date: Thu, 03 Aug 2017 18:52:09 +0200
Subject: [PATCH] Enforce tab indentation

---
 .eslintrc.js |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/.eslintrc.js b/.eslintrc.js
index cd50ca3..94be454 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -35,6 +35,8 @@
         // Enforce consistent spacing inside parentheses
         // "space-in-parens": [2, "always"],
         // Enforce the consistent use of either backticks, double, or single quotes
-        "quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }]
+        "quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
+        // Enforce using tabs for indentation
+        "indent": [2, "tab", { "SwitchCase": 1 }]
     }
 };

--
Gitblit v1.9.3