From 74c1fd6289af7852d29b96eefc080c88d0db4ce1 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 4 Apr 2016 17:09:33 +0200 Subject: [PATCH] =?utf8?q?jshint-Konfigurationsdatei=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Diverse Stile, die bei kivitendo verwendet werden, benötigen manuelle Einstellungen. --- .jshintrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 000000000..bff88db9f --- /dev/null +++ b/.jshintrc @@ -0,0 +1,12 @@ +{ + "laxcomma" : true, // tolerate "," at the beginning of lines + "laxbreak" : true, // tolerate "+" at the beginning of lines + "jquery": true, // assume jquery is loaded + "asi" : true, // tolerate satements without ";" yet + "eqeqeq" : false, // don't require === for comparisons yet + // "strict" : true + + "globals" : { + "predef": [ "kivi" ] + } +} -- 2.20.1