1
0
Fork 0
grunt-tasks/tasks/fixwhitespace.js

8 lines
206 B
JavaScript

module.exports = function(grunt) {
grunt.registerTask('fixwhitespace', function() {
var cwd = grunt.option('cwd');
grunt.config.set('cwd', cwd);
grunt.task.run('trimtrailingspaces');
});
};