investtools/extensible-duck

View on GitHub

Showing 7 of 9 total issues

Function testBrowser has 70 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function testBrowser() {
  // Our testing bundle is made up of our unit tests, which
  // should individually load up pieces of our application.
  // We also include the browser setup file.
  const testFiles = glob.sync('./test/unit/**/*.js')
Severity: Major
Found in gulpfile.js - About 2 hrs to fix

    Function mergeDeep has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

    function mergeDeep(target, ...sources) {
      if (!sources.length) return target
      const source = sources.shift()
    
      if (Array.isArray(target)) {
    Severity: Minor
    Found in src/extensible-duck.js - About 2 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 build has 47 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function build() {
      return gulp
        .src(path.join('src', config.entryFileName))
        .pipe(
          webpackStream(
    Severity: Minor
    Found in gulpfile.js - About 1 hr to fix

      Function extend has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        extend(options) {
          if (isFunction(options)) {
            options = options(this)
          }
          options = assignDefaults(options)
      Severity: Minor
      Found in src/extensible-duck.js - About 1 hr to fix

        Function constructor has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          constructor(options) {
            options = assignDefaults(options)
            const {
              namespace,
              store,
        Severity: Minor
        Found in src/extensible-duck.js - About 1 hr to fix

          Avoid deeply nested control flow statements.
          Open

                  if (!target[key]) {
                    target[key] = source[key]
                  } else {
                    mergeDeep(target[key], source[key])
                  }
          Severity: Major
          Found in src/extensible-duck.js - About 45 mins to fix

            Function extend has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

              extend(options) {
                if (isFunction(options)) {
                  options = options(this)
                }
                options = assignDefaults(options)
            Severity: Minor
            Found in src/extensible-duck.js - About 35 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

            Severity
            Category
            Status
            Source
            Language