Skip to content

Instantly share code, notes, and snippets.

@janis-kra
Created October 4, 2016 11:17
Show Gist options
  • Save janis-kra/eb1e418a7bf87afe4dee0bc9f7fb4acc to your computer and use it in GitHub Desktop.
Save janis-kra/eb1e418a7bf87afe4dee0bc9f7fb4acc to your computer and use it in GitHub Desktop.
Utilizing the full potential of Grunt tasks: Gruntfile with initConfig
require('load-grunt-tasks')(grunt);
grunt.initConfig({
eslint: {
target: ['file.js']
}
});
grunt.registerTask('default', ['eslint']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment