UNPKG

155 BJavaScriptView Raw
1module.exports = function( grunt ) {
2
3grunt.initConfig({
4 lint: {
5 files: [ "grunt.js", "lib/*.js" ]
6 }
7});
8
9grunt.registerTask( "default", "lint" );
10
11};