UNPKG

haraka-plugin-wildduck

Version:

Haraka plugin for processing incoming messages for the WildDuck IMAP server

17 lines (13 loc) 316 B
'use strict'; module.exports = function(grunt) { // Project configuration. grunt.initConfig({ eslint: { all: ['index.js', 'Gruntfile.js'] } }); // Load the plugin(s) grunt.loadNpmTasks('grunt-eslint'); // Tasks grunt.registerTask('default', ['eslint']); };