Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(build): ESLint error in Express config (#1807)
Browse files Browse the repository at this point in the history
Fixes a trailing space eslint error in the Express config.
  • Loading branch information
mleanos authored Jul 3, 2017
1 parent 57c63e6 commit b7fc24d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/lib/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ module.exports.initModulesConfiguration = function (app, db) {
module.exports.initHelmetHeaders = function (app) {
// six months expiration period specified in seconds
var SIX_MONTHS = 15778476;

app.use(helmet.frameguard());
app.use(helmet.xssFilter());
app.use(helmet.noSniff());
Expand Down

0 comments on commit b7fc24d

Please sign in to comment.