vorteil/vorteil

View on GitHub
pkg/virtualizers/util.go

Summary

Maintainability
D
1 day
Test Coverage

Function Backends has a Cognitive Complexity of 61 (exceeds 20 allowed). Consider refactoring.
Open

func Backends() ([]string, error) {
    var installedVirtualizers []string
    path := os.Getenv("PATH")
    separated := ":"
    if runtime.GOOS == "windows" {
Severity: Minor
Found in pkg/virtualizers/util.go - About 7 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 Backends has 86 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func Backends() ([]string, error) {
    var installedVirtualizers []string
    path := os.Getenv("PATH")
    separated := ":"
    if runtime.GOOS == "windows" {
Severity: Major
Found in pkg/virtualizers/util.go - About 2 hrs to fix

    Function BindPort has a Cognitive Complexity of 31 (exceeds 20 allowed). Consider refactoring.
    Open

    func BindPort(netType, protocol, port string) (string, string, error) {
        var (
            bind     string
            netRoute string
            isBound  bool
    Severity: Minor
    Found in pkg/virtualizers/util.go - About 2 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 BindPort has 62 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    func BindPort(netType, protocol, port string) (string, string, error) {
        var (
            bind     string
            netRoute string
            isBound  bool
    Severity: Minor
    Found in pkg/virtualizers/util.go - About 1 hr to fix

      Function VSwitches has 6 return statements (exceeds 4 allowed).
      Open

      func VSwitches() ([]string, error) {
          virtualizers, err := Backends()
          if err != nil {
              return nil, err
          }
      Severity: Major
      Found in pkg/virtualizers/util.go - About 40 mins to fix

        Function Backends has 6 return statements (exceeds 4 allowed).
        Open

        func Backends() ([]string, error) {
            var installedVirtualizers []string
            path := os.Getenv("PATH")
            separated := ":"
            if runtime.GOOS == "windows" {
        Severity: Major
        Found in pkg/virtualizers/util.go - About 40 mins to fix

          Function BindPort has 5 return statements (exceeds 4 allowed).
          Open

          func BindPort(netType, protocol, port string) (string, string, error) {
              var (
                  bind     string
                  netRoute string
                  isBound  bool
          Severity: Major
          Found in pkg/virtualizers/util.go - About 35 mins to fix

            if block ends with a return statement, so drop this else and outdent its block
            Open

                    } else {
            Severity: Minor
            Found in pkg/virtualizers/util.go by golint

            There are no issues that match your filters.

            Category
            Status