From: Aleksander Ɓukasz Date: Mon, 1 Jul 2013 08:36:14 +0000 (+0200) Subject: jshintrc tweak - allowing multistrings X-Git-Url: https://git.mdrn.pl/fnpeditor.git/commitdiff_plain/aa8123dfafba46b530ad5295436074ac29684235?ds=sidebyside jshintrc tweak - allowing multistrings --- diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..834b211 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,3 @@ +{ + "multistr": true +} \ No newline at end of file diff --git a/Gruntfile.js b/Gruntfile.js index 681ec8b..5f66014 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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' + } } });