1
0
Fork 0

Ignore remaining two jshint failures (to be addressed)

This gets everything in a good place for further refactoring.
master
Mike Gerwitz 2015-12-23 23:59:11 -05:00
parent b2304316ba
commit a0cc723582
2 changed files with 5 additions and 0 deletions

View File

@ -42,6 +42,9 @@
* identify the file as a bitmap image.)
*/
/* XXX: remove me! */
/* globals btoa */
const Class = require( 'easejs' ).Class;

View File

@ -44,6 +44,7 @@ module.exports = Class( 'GameObject',
},
/* jshint -W098 */
'virtual public move': function( dir, c, sc )
{
// move in the appropriate direction (action has been pre-configured
@ -52,4 +53,5 @@ module.exports = Class( 'GameObject',
return this;
}
/* jshint +W098 */
} );