From db563426156a2a2fe21c33c82ebdaa350f12f556 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Tue, 30 Dec 2014 02:58:22 -0800 Subject: [PATCH] Declare `Raphael` as a global for JSHint Summary: Let JSHint know that `Raphael` is a global that can be used anywhere. This is not technically correct, but it silences a few JSHint warnings. See http://jshint.com/docs/ for more information. Test Plan: `arc lint -- webroot/rsrc/js/application/maniphest/behavior-line-chart.js` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11069 --- support/lint/jshintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/support/lint/jshintrc b/support/lint/jshintrc index 900cf7d115..db66e533c0 100644 --- a/support/lint/jshintrc +++ b/support/lint/jshintrc @@ -16,6 +16,7 @@ "globals": { "JX": false, + "Raphael": false, "__DEV__": false }, "browser": true