uccser/verto

View on GitHub
verto/VertoExtension.py

Summary

Maintainability
B
6 hrs
Test Coverage

File VertoExtension.py has 259 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from markdown.extensions import Extension
import markdown.util as utils

from verto.processors.CommentPreprocessor import CommentPreprocessor
from verto.processors.BlockquoteBlockProcessor import BlockquoteBlockProcessor
Severity: Minor
Found in verto/VertoExtension.py - About 2 hrs to fix

    Function __init__ has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, processors=[], html_templates={}, extensions=[], settings={}, *args, **kwargs):
            '''
            Args:
                processors: A set of processor names given as strings for which
                    their processors are enabled. If given, all other
    Severity: Minor
    Found in verto/VertoExtension.py - About 55 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 extendMarkdown has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def extendMarkdown(self, md, md_globals):
            '''Inherited from the markdown.Extension class. Extends
            markdown with custom processors.
                ['style', StylePreprocessor(self, md), '_begin']
    
    
    Severity: Minor
    Found in verto/VertoExtension.py - About 55 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 __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(self, processors=[], html_templates={}, extensions=[], settings={}, *args, **kwargs):
    Severity: Minor
    Found in verto/VertoExtension.py - About 45 mins to fix

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

          def modify_rules(self, json_data):
              '''
              Modify the default tag argument rules using given custom rules.
      
              Args:
      Severity: Minor
      Found in verto/VertoExtension.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 loadJinjaTemplates has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def loadJinjaTemplates(self, custom_templates):
              '''Loads default templates from the templates directory, if
              a custom template is given that will override the default
              template.
      
      
      Severity: Minor
      Found in verto/VertoExtension.py - 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

      There are no issues that match your filters.

      Category
      Status