mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
db56342615
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
23 lines
336 B
Text
23 lines
336 B
Text
{
|
|
"bitwise": true,
|
|
"curly": true,
|
|
"immed": true,
|
|
"indent": 2,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"quotmark": "single",
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
"expr": true,
|
|
"loopfunc": true,
|
|
"sub": true,
|
|
|
|
"globals": {
|
|
"JX": false,
|
|
"Raphael": false,
|
|
"__DEV__": false
|
|
},
|
|
"browser": true
|
|
}
|