From babe9b6f5443aa1d92881e1fde4c820e3ed2f10e Mon Sep 17 00:00:00 2001 From: Denis Wolf Date: Mon, 28 Oct 2013 02:09:09 +0200 Subject: [PATCH] valid jshint config with globals for tests only --- tests/.jshintrc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/.jshintrc diff --git a/tests/.jshintrc b/tests/.jshintrc new file mode 100644 index 0000000000..3bc176b7f6 --- /dev/null +++ b/tests/.jshintrc @@ -0,0 +1,9 @@ +{ + "strict" : false, // true: Requires all functions run in ES5 Strict Mode + + // Custom Globals + "globals" : { + "it": false, + "describe": false + } +} \ No newline at end of file