freqtrade/freqtrade

View on GitHub
freqtrade/configuration/config_validation.py

Summary

Maintainability
B
5 hrs
Test Coverage

File config_validation.py has 323 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import logging
from collections import Counter
from copy import deepcopy
from typing import Any, Dict

Severity: Minor
Found in freqtrade/configuration/config_validation.py - About 3 hrs to fix

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

    def validate_config_schema(conf: Dict[str, Any], preliminary: bool = False) -> Dict[str, Any]:
        """
        Validate the configuration follow the Config Schema
        :param conf: Config in JSON format
        :return: Returns the config if valid, otherwise throw an exception
    Severity: Minor
    Found in freqtrade/configuration/config_validation.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 _validate_trailing_stoploss has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    def _validate_trailing_stoploss(conf: Dict[str, Any]) -> None:
    
        if conf.get('stoploss') == 0.0:
            raise ConfigurationError(
                'The config stoploss needs to be different from 0 to avoid problems with sell orders.'
    Severity: Minor
    Found in freqtrade/configuration/config_validation.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

    Function _validate_protections has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def _validate_protections(conf: Dict[str, Any]) -> None:
        """
        Validate protection configuration validity
        """
    
    
    Severity: Minor
    Found in freqtrade/configuration/config_validation.py - About 25 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