0b06638f by David LaPalomento

Tighten up jshint

Enforce more formatting and style rules with jshint. Make the gruntile compliant.
1 parent 31ad020c
......@@ -10,5 +10,11 @@
"unused": true,
"boss": true,
"eqnull": true,
"node": true
"node": true,
"camelcase": true,
"nonew": true,
"quotmark": "single",
"trailing": true,
"maxlen": 80
}
......
......@@ -81,6 +81,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
grunt.registerTask('default', ['jshint', 'qunit', 'clean', 'concat', 'uglify']);
grunt.registerTask('default',
['jshint', 'qunit', 'clean', 'concat', 'uglify']);
};
......