From aa8123dfafba46b530ad5295436074ac29684235 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Mon, 1 Jul 2013 10:36:14 +0200 Subject: [PATCH] jshintrc tweak - allowing multistrings --- .jshintrc | 3 +++ Gruntfile.js | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .jshintrc 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' + } } }); -- 2.20.1