simonkowallik/tmconfpy

View on GitHub

Showing 25 of 35 total issues

Avoid deeply nested control flow statements.
Open

                        if (
                            key.startswith("gtm monitor external")
                            and "user-defined" in tmp
                        ):
                            if "user-defined" not in obj:

    Avoid deeply nested control flow statements.
    Open

                            if (i + c) >= len(arr):
                                raise ValueError(
                                    f"Missing or mis-indented '}}' for line number {i+1}: '{arr[i]}'"
                                )
                        sub_obj_arr = self._remove_indent(arr[i : i + c + 1])
    Severity: Major
    Found in tmconfpy/parser.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              while arr[i + c] and arr[i + c].count('"') % 2 != 1:
                                  c += 1
      
      
      Severity: Major
      Found in tmconfpy/parser.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                while arr[i + c] and arr[i + c].count('"') % 2 != 1:
                                    c += 1
        
        

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

          def cli():
              """Handle CLI interaction."""
              args = _cli_arg_parser()
          
              tmconf_content = args.file_path.read() if args.file_path is not None else ""
          Severity: Minor
          Found in tmconfpy/cli.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

          Severity
          Category
          Status
          Source
          Language