thegameofcode/cipherlayer

View on GitHub
src/middlewares/permissions.js

Summary

Maintainability
A
2 hrs
Test Coverage

Function checkPermissions has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function checkPermissions(req, res, next) {
    if (!config.endpoints) {
        return next();
    }

Severity: Minor
Found in src/middlewares/permissions.js - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function checkPermissions has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function checkPermissions(req, res, next) {
    if (!config.endpoints) {
        return next();
    }

Severity: Minor
Found in src/middlewares/permissions.js - About 1 hr to fix

    TODO found
    Open

        //TODO: replace with map() or some()
    Severity: Minor
    Found in src/middlewares/permissions.js by fixme

    TODO found
    Open

                // TODO; replace with map() or some()
    Severity: Minor
    Found in src/middlewares/permissions.js by fixme

    Definition for rule 'extra-rules/potential-point-free' was not found
    Open

    'use strict';
    Severity: Minor
    Found in src/middlewares/permissions.js by eslint

    For more information visit Source: http://eslint.org/docs/rules/

    Definition for rule 'extra-rules/no-for-loops' was not found
    Open

    'use strict';
    Severity: Minor
    Found in src/middlewares/permissions.js by eslint

    For more information visit Source: http://eslint.org/docs/rules/

    There are no issues that match your filters.

    Category
    Status