You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wrap-errors: sentinel branch before bare return err was skipped — if err != nil blocks containing an errors.Is sentinel branch followed by a bare return nil, err were skipped entirely.
wrap-errors: bare return err inside loops was skipped — if err != nil blocks nested inside for/range/switch/select bodies were never visited.
wrap-errors: doc comment of next function embedded in fmt.Errorf — The go/printer could pull the doc comment of the immediately following function into the fmt.Errorf(...) argument list and remove it from its correct position.
error-not-wrapped lint rule: false positives inside function literals — return err inside filepath.Walk/WalkDir callbacks was reported as an unwrapped error on the outer exported function.