Skip to content

Commit

Permalink
Initial commit for Grunt
Browse files Browse the repository at this point in the history
  • Loading branch information
UsainBloot committed Sep 16, 2014
1 parent ddd02ad commit 31dba06
Show file tree
Hide file tree
Showing 1,427 changed files with 293,603 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
// This line makes your node configurations available for use
pkg: grunt.file.readJSON('package.json'),
// This is where we configure JSHint
jshint: {
// You get to make the name
// The paths tell JSHint which files to validate
myFiles: ['js/**/*.js']
}
});
// Each plugin must be loaded following this pattern
grunt.loadNpmTasks('grunt-contrib-jshint');

grunt.registerTask('default', 'jshint');
};
22 changes: 22 additions & 0 deletions node_modules/grunt-contrib-jshint/LICENSE-MIT

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

252 changes: 252 additions & 0 deletions node_modules/grunt-contrib-jshint/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/grunt-contrib-jshint/node_modules/.bin/jshint

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions node_modules/grunt-contrib-jshint/node_modules/hooker/LICENSE-MIT

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 31dba06

Please sign in to comment.