css2spritesmith
Version:
A plugin to help front engineer creating css sprite.
19 lines (16 loc) • 340 B
JavaScript
/*
* css-spritesmith
* https://github.com/laoshu133
*
* Licensed under the MIT license.
*/
module.exports = function(grunt) {
grunt.initConfig({
jshint: {
all: [ 'Gruntfile.js', 'lib/*.js' ]
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
// 声明别名
grunt.registerTask('default', ['jshint']);
};