From 8ef26c164337084a9d13b443fb8a00c36344212f Mon Sep 17 00:00:00 2001
From: Mathis Dedial <mdedial@student.ethz.ch>
Date: Sun, 29 Oct 2017 15:41:40 +0100
Subject: [PATCH] Disable eslint rules for multiline strings and dangling
 underscores

---
 .eslintrc.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.eslintrc.js b/.eslintrc.js
index fd6e66a5..2a3a7f3b 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -4,4 +4,8 @@ module.exports = {
         "browser": true,
         "node": true
     },
+    "rules": {
+        "no-multi-str": 0,
+        "no-underscore-dangle": 0,
+    },
 };
\ No newline at end of file
-- 
GitLab