feat(tools): ignore no-unused-vars on underscore (#48386)

This commit is contained in:
Shaun Hamilton
2022-11-04 05:13:46 +00:00
committed by GitHub
parent 4e7d147a03
commit ec3ee856ec
4 changed files with 11 additions and 6 deletions

View File

@@ -24,8 +24,7 @@ const isDev = process.env.FREECODECAMP_NODE_ENV !== 'production';
export default function prodErrorHandler() {
// error handling in production.
// eslint-disable-next-line no-unused-vars
return function (err, req, res, next) {
return function (err, req, res, _next) {
// response for when req.body is bigger than body-parser's size limit
if (err?.type === 'entity.too.large') {
return res.status('413').send('Request payload is too large');