beavyHQ/beavy

View on GitHub
.infrastructure/i18n/reformat-react-intl-json.py

Summary

Maintainability
A
1 hr
Test Coverage

Function deep_map_translations_in has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

def deep_map_translations_in(path, ignore={}):
    all_translations = {}
    for root, dirs, files in os.walk(path):
        for name in files:
            with open(os.path.join(root, name)) as f:
Severity: Minor
Found in .infrastructure/i18n/reformat-react-intl-json.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

Avoid deeply nested control flow statements.
Open

                    if entry["id"] in ignore:
                        continue
                    all_translations[entry["id"]] = entry["defaultMessage"]
Severity: Major
Found in .infrastructure/i18n/reformat-react-intl-json.py - About 45 mins to fix

    There are no issues that match your filters.

    Category
    Status