|
|
|
@ -72,9 +72,7 @@ module.exports = function(grunt) {
|
|
|
|
"checkRedundantParams": true,
|
|
|
|
"checkRedundantParams": true,
|
|
|
|
"requireParamTypes": true
|
|
|
|
"requireParamTypes": true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"validateQuoteMarks": "\"",
|
|
|
|
"validateQuoteMarks": "\""
|
|
|
|
reporter: "checkstyle",
|
|
|
|
|
|
|
|
reporterOutput: "jscs.xml"
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
flot: {
|
|
|
|
flot: {
|
|
|
|
src: "<%= jshint.flot.src %>"
|
|
|
|
src: "<%= jshint.flot.src %>"
|
|
|
|
@ -90,6 +88,6 @@ module.exports = function(grunt) {
|
|
|
|
grunt.loadNpmTasks("grunt-jscs-checker");
|
|
|
|
grunt.loadNpmTasks("grunt-jscs-checker");
|
|
|
|
|
|
|
|
|
|
|
|
// Default task.
|
|
|
|
// Default task.
|
|
|
|
grunt.registerTask("default", ["jshint", "uglify"]);
|
|
|
|
grunt.registerTask("default", ["jscs", "jshint", "uglify"]);
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|