UNPKG

proxy-test-server

Version:

Proxy server for testing proxied connections

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