From de71d6a2ae1743c7b49ac945194c26cac5f61186 Mon Sep 17 00:00:00 2001 From: Simon Boudrias Date: Fri, 3 Jan 2014 16:35:14 -0500 Subject: [PATCH] Add test specific .jshintrc file extending base one I kept the jshint comments for now as it is not supported by gulp-jshint. Though they should be deleted once they add support. --- test/.jshintrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/.jshintrc diff --git a/test/.jshintrc b/test/.jshintrc new file mode 100644 index 00000000..383e4959 --- /dev/null +++ b/test/.jshintrc @@ -0,0 +1,12 @@ +{ + "extends": "../.jshintrc", + "globals": [ + "describe", + "it", + "xit", + "before", + "after", + "beforeEach", + "afterEach" + ] +}