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)