christabor/flask_extras

View on GitHub
flask_extras/filters/filters.py

Summary

Maintainability
B
6 hrs
Test Coverage

File filters.py has 313 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Standard filters."""

import re

import json
Severity: Minor
Found in flask_extras/filters/filters.py - About 3 hrs to fix

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

    def phone2numeric(phoneword):
        """Convert a phoneword string into the translated number equivalent.
    
        Roughly equivalent to Djangos' phone2numeric.
    
    
    Severity: Minor
    Found in flask_extras/filters/filters.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 make_list has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def make_list(val, coerce_numbers=True):
        """Make a list from a given value.
    
        Roughly equivalent to Djangos' make_list, with some enhancements.
    
    
    Severity: Minor
    Found in flask_extras/filters/filters.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 slugify has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    def slugify(string):
        """Convert a string of characters to URL slug format.
    
        All characters replacing all characters with hyphens if invalid.
        Roughly equivalent to Djangos' slugify.
    Severity: Minor
    Found in flask_extras/filters/filters.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