Files
jasmine/grunt/config/jshint.js
T
Sheel Choksi and Tim Jarratt 797984f173 Add newlines to end of files
2013-10-25 10:57:43 -07:00

18 lines
482 B
JavaScript

module.exports = {
beforeConcat: ['src/**/*.js'],
afterConcat: [
'lib/jasmine-core/jasmine-html.js',
'lib/jasmine-core/jasmine.js'
],
options: {
/* While it's possible that we could be considering unwanted prototype methods, mostly
* we're doing this because the objects are being used as maps.
*/
forin: false,
/* We're fine with functions defined inside loops (setTimeout functions, etc) */
loopfunc: true
},
all: ['src/**/*.js']
};