ForestAdmin/forest-express

View on GitHub
src/index.js

Summary

Maintainability
D
2 days
Test Coverage
B
86%

File index.js has 390 lines of code (exceeds 250 allowed). Consider refactoring.
Open

const _ = require('lodash');
const crypto = require('crypto');
const express = require('express');
const cors = require('cors');
const bodyParser = require('body-parser');
Severity: Minor
Found in src/index.js - About 5 hrs to fix

    Function init has 134 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    exports.init = async (Implementation) => {
      const { opts } = Implementation;
    
      configStore.Implementation = Implementation;
      configStore.lianaOptions = opts;
    Severity: Major
    Found in src/index.js - About 5 hrs to fix

      Function init has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
      Open

      exports.init = async (Implementation) => {
        const { opts } = Implementation;
      
        configStore.Implementation = Implementation;
        configStore.lianaOptions = opts;
      Severity: Minor
      Found in src/index.js - About 4 hrs 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 generateAndSendSchema has 82 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      async function generateAndSendSchema(envSecret) {
        const collections = _.values(Schemas.schemas);
        configStore.integrator.defineCollections(collections);
      
        collections
      Severity: Major
      Found in src/index.js - About 3 hrs to fix

        Function collection has 48 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        exports.collection = (name, opts) => {
          if (_.isEmpty(Schemas.schemas) && opts.modelsDir) {
            logger.error(`Cannot customize your collection named "${name}" properly. Did you call the "collection" method in the /forest directory?`);
            return;
          }
        Severity: Minor
        Found in src/index.js - About 1 hr to fix

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

          exports.collection = (name, opts) => {
            if (_.isEmpty(Schemas.schemas) && opts.modelsDir) {
              logger.error(`Cannot customize your collection named "${name}" properly. Did you call the "collection" method in the /forest directory?`);
              return;
            }
          Severity: Minor
          Found in src/index.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 generateAndSendSchema has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          async function generateAndSendSchema(envSecret) {
            const collections = _.values(Schemas.schemas);
            configStore.integrator.defineCollections(collections);
          
            collections
          Severity: Minor
          Found in src/index.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

          There are no issues that match your filters.

          Category
          Status