UNPKG

powered

Version:

HTTP x-powered-by for your application.

15 lines (13 loc) 259 B
/* eslint no-nested-ternary: 0 */ module.exports = (grunt) => { grunt.initConfig({ eslint: { target: [ './lib/**/*.js', './test/**/*.js' ], options: { quiet: true } } }); grunt.loadNpmTasks('grunt-eslint'); };