UNPKG
hapi-hpkp
Version:
latest (2.0.0)
2.0.0
1.0.0
Hapi module to add HPKP headers
github.com/vbudhram/hapi-hpkp
vbudhram/hapi-hpkp
hapi-hpkp
/
grunttasks
/
eslint.js
14 lines
(12 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports =
function
(
grunt
)
{
'use strict'
grunt.
config
(
'eslint'
, {
options
: {
eslintrc
:
'.eslintrc'
},
files
: [
'{,grunttasks/,lib/**/,test/**/}*.js'
] }) grunt.
registerTask
(
'quicklint'
,
'lint the modified files'
,
'newer:eslint'
) }