NodeBB/NodeBB

View on GitHub
src/database/redis/sorted.js

Summary

Maintainability
F
3 days
Test Coverage

Function exports has a Cognitive Complexity of 95 (exceeds 10 allowed). Consider refactoring.
Open

module.exports = function (module) {
    const utils = require('../../utils');
    const helpers = require('./helpers');
    const dbHelpers = require('../helpers');

Severity: Minor
Found in src/database/redis/sorted.js - About 1 day 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 exports has 285 lines of code (exceeds 75 allowed). Consider refactoring.
Open

module.exports = function (module) {
    const utils = require('../../utils');
    const helpers = require('./helpers');
    const dbHelpers = require('../helpers');

Severity: Major
Found in src/database/redis/sorted.js - About 1 day to fix

    Function genParams has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        function genParams(method, key, start, stop, min, max, withScores) {
    Severity: Major
    Found in src/database/redis/sorted.js - About 50 mins to fix

      Function sortedSetRange has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          async function sortedSetRange(method, key, start, stop, min, max, withScores) {
      Severity: Major
      Found in src/database/redis/sorted.js - About 50 mins to fix

        Function sortedSetRangeByScore has 7 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            async function sortedSetRangeByScore(method, key, start, count, min, max, withScores) {
        Severity: Major
        Found in src/database/redis/sorted.js - About 50 mins to fix

          Function sortedSetLex has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              async function sortedSetLex(method, reverse, key, min, max, start, count) {
          Severity: Major
          Found in src/database/redis/sorted.js - About 50 mins to fix

            Function getSortedSetRevRangeByScoreWithScores has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                module.getSortedSetRevRangeByScoreWithScores = async function (key, start, count, max, min) {
            Severity: Minor
            Found in src/database/redis/sorted.js - About 35 mins to fix

              Function getSortedSetRevRangeByScore has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  module.getSortedSetRevRangeByScore = async function (key, start, count, max, min) {
              Severity: Minor
              Found in src/database/redis/sorted.js - About 35 mins to fix

                Function getSortedSetRangeByScoreWithScores has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    module.getSortedSetRangeByScoreWithScores = async function (key, start, count, min, max) {
                Severity: Minor
                Found in src/database/redis/sorted.js - About 35 mins to fix

                  Function getSortedSetRevRangeByLex has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      module.getSortedSetRevRangeByLex = async function (key, max, min, start, count) {
                  Severity: Minor
                  Found in src/database/redis/sorted.js - About 35 mins to fix

                    Function getSortedSetRangeByScore has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        module.getSortedSetRangeByScore = async function (key, start, count, min, max) {
                    Severity: Minor
                    Found in src/database/redis/sorted.js - About 35 mins to fix

                      Function getSortedSetRangeByLex has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          module.getSortedSetRangeByLex = async function (key, min, max, start, count) {
                      Severity: Minor
                      Found in src/database/redis/sorted.js - About 35 mins to fix

                        There are no issues that match your filters.

                        Category
                        Status