From 9720d1dcd1118d7d6b8e58815d0830302808097c Mon Sep 17 00:00:00 2001
From: manuel <manuel@fritteli.ch>
Date: Thu, 3 Jul 2014 21:25:47 +0200
Subject: [PATCH] accept "unsafe" line breaks

---
 .jshintrc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.jshintrc b/.jshintrc
index 01ed15d..8e9735a 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -43,7 +43,7 @@
 
     // The Good Parts.
     "asi"           : false,  // Tolerate Automatic Semicolon Insertion (no semicolons).
-    "laxbreak"      : false,   // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
+    "laxbreak"      : true,   // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
     "bitwise"       : true,   // Prohibit bitwise operators (&, |, ^, etc.).
     "boss"          : false,  // Tolerate assignments inside if, for & while. Usually conditions & loops are for comparison, not assignments.
     "curly"         : true,   // Require {} for every new block or scope.