Update jshint for modules

This commit is contained in:
kpdecker
2013-10-01 21:42:04 -05:00
parent 117357b74e
commit a3b22ac6bf
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -30,12 +30,14 @@
"node" : true,
"browser" : true,
"esnext": true,
"boss" : true,
"curly": false,
"debug": false,
"devel": false,
"eqeqeq": false,
"eqnull": true,
"evil": true,
"forin": false,
"immed": false,
+2 -1
View File
@@ -15,7 +15,7 @@ module.exports = function(grunt) {
force: true
},
files: [
'lib/**/!(parser|browser-prefix|browser-suffix).js'
'lib/**/!(parser).js'
]
},
@@ -44,6 +44,7 @@ module.exports = function(grunt) {
// Build a new version of the library
this.registerTask('build', "Builds a distributable version of the current project", [
'jshint',
'clean',
'transpile:amd',
'concat:library']);