Incorrect warning for 'defined but never used' for forward-declared functions · Issue #797 · jshint/jshint
/*jshint unused:true */ function caller() { callee(); } function callee() {} Calling JSHint on this gives: $ jshint example.js example.js: line 2, col 16, 'caller' is defined but never used. exampl...