UNPKG

versioneye-update

Version:

Create/Update projects at VersionEye.com via the API

19 lines (15 loc) 391 B
module.exports = function (grunt) { // Project configuration. grunt.initConfig({ eslint: { files: { src: [ '**/*.js', '!node_modules/**/*'] } } }); grunt.loadNpmTasks('grunt-eslint'); // Default task(s). grunt.registerTask('default', ['eslint']); };