jshintrc tweak - allowing multistrings
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 1 Jul 2013 08:36:14 +0000 (10:36 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 1 Jul 2013 08:36:14 +0000 (10:36 +0200)
.jshintrc [new file with mode: 0644]
Gruntfile.js

diff --git a/.jshintrc b/.jshintrc
new file mode 100644 (file)
index 0000000..834b211
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,3 @@
+{
+    "multistr": true
+}
\ No newline at end of file
index 681ec8b..5f66014 100644 (file)
@@ -24,7 +24,10 @@ module.exports = function(grunt) {
             },
         },
         jshint: {
-            all: ['Gruntfile.js', 'modules/**/*.js', 'views/**/*.js', 'fnpjs/**/*.js']
+            all: ['Gruntfile.js', 'modules/**/*.js', 'views/**/*.js', 'fnpjs/**/*.js'],
+            options: {
+                jshintrc: '.jshintrc'
+            }
         }
     });