weareopensource/Node

View on GitHub
lib/middlewares/model.js

Summary

Maintainability
A
0 mins
Test Coverage

Showing 0 of 4 total issues

Function checkError has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Wontfix

const checkError = (result) => {
if (result && result.error) {
if (result.error.original && (result.error.original.password || result.error.original.firstname))
result.error.original = _.pick(result.error.original, config.whitelists.users.default);
let description = '';
Severity: Minor
Found in lib/middlewares/model.js - About 1 hr to fix

Function isValid has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Wontfix

const isValid = (schema) => (req, res, next) => {
const method = req.method.toLowerCase();
const options = _.clone(config.joi.validationOptions);
if (_.includes(config.joi.supportedMethods, method)) {
if (method === 'put') {
Severity: Minor
Found in lib/middlewares/model.js - About 45 mins to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Wontfix

if (result.error.original && (result.error.original.password || result.error.original.firstname))
result.error.original = _.pick(result.error.original, config.whitelists.users.default);
Severity: Major
Found in lib/middlewares/model.js and 1 other location - About 2 hrs to fix
lib/middlewares/model.js on lines 52..53

Similar blocks of code found in 2 locations. Consider refactoring.
Wontfix

if (result.error._original && (result.error._original.password || result.error._original.firstname))
result.error._original = _.pick(result.error._original, config.whitelists.users.default);
Severity: Major
Found in lib/middlewares/model.js and 1 other location - About 2 hrs to fix
lib/middlewares/model.js on lines 44..45

There are no issues that match your filters.

Category
Status