HarvestHub/GardenHub

View on GitHub

Showing 4 of 74 total issues

File models.py has 402 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from django.db import models
from django.db.models import Q
from django.core.mail import send_mail
from django.conf import settings
from django.contrib.auth import get_user_model
Severity: Minor
Found in gardenhub/models.py - About 5 hrs to fix

    File views.py has 393 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    from django.db.models import Q
    from django.http import HttpResponseRedirect, JsonResponse
    from django.contrib import messages
    from django.contrib.auth import get_user_model, login
    from django.contrib.auth.views import (
    Severity: Minor
    Found in gardenhub/views.py - About 5 hrs to fix

      Function form_valid has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def form_valid(self, form):
              user = self.request.user
              data = form.cleaned_data
      
              # Set user's name
      Severity: Minor
      Found in gardenhub/views.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

      Function email_user has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def email_user(self, subject, message, from_email=None, **kwargs):
      Severity: Minor
      Found in gardenhub/models.py - About 35 mins to fix
        Severity
        Category
        Status
        Source
        Language