Are files nested in the server/api purposefully excluded from jshint:serve? If not, proposed minor updates outlined below: Updated [Gruntfile](https://github.com/DaftMonk/generator-angular-fullstack/blob/master/app/templates/Gruntfile.js#L170): ``` src: [ 'server/{,*/}*.js'] ``` to ``` src: [ 'server/**/*.js'] ``` This causes the boilerplate specs to fail on 'grunt jshint:server'. Two additional changes to address: 1. Remove `"latedef": true` from [Server .jshintrc](https://github.com/DaftMonk/generator-angular-fullstack/blob/master/app/templates/server/.jshintrc#L7) 2. Add `/*global describe, it, before, beforeEach, after, afterEach */` and `/*jshint expr:true */` to [thing.spec.js](https://github.com/DaftMonk/generator-angular-fullstack/blob/master/app/templates/server/api/thing/thing.spec.js#L2) and [user.spec.js](https://github.com/DaftMonk/generator-angular-fullstack/blob/master/app/templates/server/api/user%28auth%29/user.model.spec.js#L2)
Are files nested in the server/api purposefully excluded from jshint:serve?
If not, proposed minor updates outlined below:
Updated Gruntfile:
to
This causes the boilerplate specs to fail on 'grunt jshint:server'. Two additional changes to address:
"latedef": truefrom Server .jshintrc/*global describe, it, before, beforeEach, after, afterEach */and
/*jshint expr:true */to thing.spec.js and user.spec.js