Whenever I use gulp-jshint, it requires me to include the 'use strict' directive in every file. This causes an issue with my global object emApp, defined in my app.js file as:
var emApp = angular.module('emApp');
Interestingly, jshint doesn't flag any issues with the angular object. I'm curious why that is and how I can achieve the same functionality with my own emApp object.