tunnckoCore/gibon

View on GitHub
@packages/koa-better-body/src/utils.js

Summary

Maintainability
C
1 day
Test Coverage

Function parseBody has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

export function* parseBody(ctx, options, next) {
  const fields = typeof options.fields === 'string' ? options.fields : 'fields';
  const files = typeof options.files === 'string' ? options.files : 'files';
  const { custom } = options.extendTypes;

Severity: Minor
Found in @packages/koa-better-body/src/utils.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 defaultOptions has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function defaultOptions(options = {}) {
  const cfg = { ...options };

  const types = defaultTypes(cfg.extendTypes);
  const opts = extend(
Severity: Minor
Found in @packages/koa-better-body/src/utils.js - About 1 hr to fix

    Function parseBody has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function* parseBody(ctx, options, next) {
      const fields = typeof options.fields === 'string' ? options.fields : 'fields';
      const files = typeof options.files === 'string' ? options.files : 'files';
      const { custom } = options.extendTypes;
    
    
    Severity: Minor
    Found in @packages/koa-better-body/src/utils.js - About 1 hr to fix

      Function multipart has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function multipart(opts) {
        const ctx = this;
      
        return function thunk(done) {
          const fields = {};
      Severity: Minor
      Found in @packages/koa-better-body/src/utils.js - About 1 hr to fix

        Function thunk has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          return function thunk(done) {
            const fields = {};
            const fileFields = {};
            const files = [];
            const form =
        Severity: Minor
        Found in @packages/koa-better-body/src/utils.js - About 1 hr to fix

          Avoid too many return statements within this function.
          Open

              return yield* next;
          Severity: Major
          Found in @packages/koa-better-body/src/utils.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                return yield* next;
            Severity: Major
            Found in @packages/koa-better-body/src/utils.js - About 30 mins to fix

              Function defaultOptions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

              export function defaultOptions(options = {}) {
                const cfg = { ...options };
              
                const types = defaultTypes(cfg.extendTypes);
                const opts = extend(
              Severity: Minor
              Found in @packages/koa-better-body/src/utils.js - About 25 mins 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