UNPKG
powered
Version:
latest (1.0.1)
1.0.1
1.0.0
HTTP x-powered-by for your application.
github.com/aichholzer/powered
aichholzer/powered
powered
/
Gruntfile.js
15 lines
(13 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint no-nested-ternary: 0 */
module.exports = (grunt) => { grunt.
initConfig
({
eslint
: {
target
: [
'./lib/**/*.js'
,
'./test/**/*.js'
],
options
: {
quiet
:
true
} } }); grunt.
loadNpmTasks
(
'grunt-eslint'
); };