sjansen/mecha

View on GitHub

Showing 9 of 13 total issues

Method stdview.init has a Cognitive Complexity of 41 (exceeds 20 allowed). Consider refactoring.
Open

func (v *stdview) init(app *tview.Application, label string, stdout, stderr <-chan string, updates <-chan *Status) {
    view := tview.NewTextView()
    v.TextView = view
    v.app = app

Severity: Minor
Found in internal/tui/stdview.go - 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 main has a Cognitive Complexity of 31 (exceeds 20 allowed). Consider refactoring.
Open

func main() {
    if exists, err := exists(pytest); err != nil {
        die(err)
    } else if !exists {
        fmt.Fprintln(os.Stderr, "No such file:", pytest)
Severity: Minor
Found in spikes/pytest/main.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 main has a Cognitive Complexity of 28 (exceeds 20 allowed). Consider refactoring.
Open

func main() {
    opts := &syntax.FileOptions{
        Set: true,
    }

Severity: Minor
Found in spikes/repl/main.go - 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 main has 63 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func main() {
    opts := &syntax.FileOptions{
        Set: true,
    }

Severity: Minor
Found in spikes/repl/main.go - About 1 hr to fix

    Function main has 61 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    func main() {
        if exists, err := exists(pytest); err != nil {
            die(err)
        } else if !exists {
            fmt.Fprintln(os.Stderr, "No such file:", pytest)
    Severity: Minor
    Found in spikes/pytest/main.go - About 1 hr to fix

      Method DemoScreen.AddStreamPair has a Cognitive Complexity of 27 (exceeds 20 allowed). Consider refactoring.
      Open

      func (s *DemoScreen) AddStreamPair(title string, stdout, stderr <-chan string) {
          view := tview.NewTextView().
              SetDynamicColors(true)
          view.SetBorder(true).
              SetTitle(title).
      Severity: Minor
      Found in internal/tui/tui.go - 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 main has 58 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      func main() {
          ctx := context.Background()
          cli, err := client.NewClientWithOpts(client.FromEnv)
          if err != nil {
              panic(err)
      Severity: Minor
      Found in spikes/docker-run/main.go - About 1 hr to fix

        Method stdview.init has 53 lines of code (exceeds 50 allowed). Consider refactoring.
        Open

        func (v *stdview) init(app *tview.Application, label string, stdout, stderr <-chan string, updates <-chan *Status) {
            view := tview.NewTextView()
            v.TextView = view
            v.app = app
        
        
        Severity: Minor
        Found in internal/tui/stdview.go - About 1 hr to fix

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

          func search(head *object.Commit, path string, target plumbing.Hash) (*object.Commit, error) {
              seen := map[plumbing.Hash]struct{}{
                  head.Hash: {},
              }
              stack := []*object.Commit{head}
          Severity: Major
          Found in spikes/git/main.go - About 35 mins to fix
            Severity
            Category
            Status
            Source
            Language