christabor/namebot

View on GitHub
namebot/scoring.py

Summary

Maintainability
C
7 hrs
Test Coverage

Function score_pronounceability has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

def score_pronounceability(word):
    """Get the ratio of vowels to consonants, a very basic measurement.

    Half vowels and half consonants indicates a highly pronounceable word.
    For example, 0.5 / 0.5 = 1.0, so one is perfect, and lower is worse.
Severity: Minor
Found in namebot/scoring.py - 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 score_length has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def score_length(word):
    """Return a score, 1-5, of the length of the word.

    Really long, or really short words get a lower score.
    There is no hard science, but popular opinion suggests
Severity: Minor
Found in namebot/scoring.py - About 45 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

Avoid too many return statements within this function.
Open

        return 5
Severity: Major
Found in namebot/scoring.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

            return 4
    Severity: Major
    Found in namebot/scoring.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

              return 1
      Severity: Major
      Found in namebot/scoring.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                return 3
        Severity: Major
        Found in namebot/scoring.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return 1
          Severity: Major
          Found in namebot/scoring.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                    return 4
            Severity: Major
            Found in namebot/scoring.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return 2
              Severity: Major
              Found in namebot/scoring.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                    return 0
                Severity: Major
                Found in namebot/scoring.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          return 5
                  Severity: Major
                  Found in namebot/scoring.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                            return 2
                    Severity: Major
                    Found in namebot/scoring.py - About 30 mins to fix

                      There are no issues that match your filters.

                      Category
                      Status