Showing 6 of 6 total issues

Function _run_with_conf has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
Open

    def _run_with_conf(self, arg_dict: dict):
        manager = managers.SsrConfManager()

        action = None
        for k in ['ls', 'new', 'del', 'edit', 'use']:
Severity: Minor
Found in ssrcli/controllers.py - About 4 hrs 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 _run_with_sub has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
Open

    def _run_with_sub(self, arg_dict: dict):
        manager = managers.SsrSubManager()

        action = None
        for k in ['ls', 'new', 'del', 'edit', 'update']:
Severity: Minor
Found in ssrcli/controllers.py - About 3 hrs 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 a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

    def __init__(self):
        super().__init__()
        for xdg_config_dir in xdg.XDG_CONFIG_DIRS:
            if (xdg_config_dir / APP_CONFIG_SUFFIX).is_file():
                with open(xdg_config_dir / APP_CONFIG_SUFFIX, 'r') as f:
Severity: Minor
Found in ssrcli/config.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 run has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    def run(self, arg_dict: dict):
        if arg_dict['conf']:
            self._run_with_conf(arg_dict)

        elif arg_dict['sub']:
Severity: Minor
Found in ssrcli/controllers.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 _build has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def _build(self):
        self.parser = argparse.ArgumentParser(prog='ssrcli', description='SSR client with shell interface')

        action = self.parser.add_mutually_exclusive_group(required=True)
        action.add_argument('-V', '--version', action='version', version='%(prog)s {}'.format(config.VERSION))
Severity: Minor
Found in ssrcli/cli.py - About 1 hr to fix

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

        def test() -> bool:
            files = glob.glob(os.path.join(config.SSR_APP_PATH, 'shadowsocks', '**', '*'), recursive=True)
            ok: bool = True
            for file in files:
                key = file[len(os.path.join(config.SSR_APP_PATH, 'shadowsocks')) + 1:]
    Severity: Minor
    Found in ssrcli/ssr.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

    Severity
    Category
    Status
    Source
    Language