cozy-labs/cozy-desktop

View on GitHub
core/utils/sentry.js

Summary

Maintainability
C
1 day
Test Coverage

Function setup has 75 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function setup(clientInfos /*: ClientInfo */) {
  if (CI || COZY_NO_SENTRY || isSentryConfigured) {
    log.info(
      { COZY_NO_SENTRY, isSentryConfigured },
      'skipping Sentry configuration'
Severity: Major
Found in core/utils/sentry.js - About 3 hrs to fix

    Function handleBunyanMessage has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const handleBunyanMessage = msg => {
      const level =
        msg.level >= bunyan.FATAL
          ? 'fatal'
          : msg.level >= bunyan.ERROR
    Severity: Minor
    Found in core/utils/sentry.js - About 1 hr to fix

      Function setup has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      function setup(clientInfos /*: ClientInfo */) {
        if (CI || COZY_NO_SENTRY || isSentryConfigured) {
          log.info(
            { COZY_NO_SENTRY, isSentryConfigured },
            'skipping Sentry configuration'
      Severity: Minor
      Found in core/utils/sentry.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 handleBunyanMessage has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      const handleBunyanMessage = msg => {
        const level =
          msg.level >= bunyan.FATAL
            ? 'fatal'
            : msg.level >= bunyan.ERROR
      Severity: Minor
      Found in core/utils/sentry.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

      Avoid too many return statements within this function.
      Open

            else return bunyanErrObjectToError(err)
      Severity: Major
      Found in core/utils/sentry.js - About 30 mins to fix

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

        function format(err /*: Object */) {
          switch (err.name) {
            case 'FetchError':
              if (err.reason) return cozyErrObjectToError(bunyanErrObjectToError(err))
              else if (err.type)
        Severity: Minor
        Found in core/utils/sentry.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