Showing 6 of 8 total issues
Function Execute
has 61 lines of code (exceeds 50 allowed). Consider refactoring. Open
Open
func Execute(url string, state *State, conn int, skiptls bool, proxy string, bwLimit string) { // Capture OS interrupt signals signalChan := make(chan os.Signal, 1) signal.Notify(signalChan, syscall.SIGHUP,
Function NewHTTPDownloader
has 52 lines of code (exceeds 50 allowed). Consider refactoring. Open
Open
func NewHTTPDownloader(url string, par int, skipTLS bool, proxyServer string, bwLimit string) *HTTPDownloader { var resumable = true client := ProxyAwareHTTPClient(proxyServer, skipTLS) parsed, err := stdurl.Parse(url)
Avoid deeply nested control flow statements. Open
Open
if err := s.Save(); err != nil { Errorf("%v\n", err) }
Function Execute
has a Cognitive Complexity of 22 (exceeds 20 allowed). Consider refactoring. Open
Open
func Execute(url string, state *State, conn int, skiptls bool, proxy string, bwLimit string) { // Capture OS interrupt signals signalChan := make(chan os.Signal, 1) signal.Notify(signalChan, syscall.SIGHUP,
- Read upRead up
Your code does not pass gofmt in 1 place. Go fmt your code! Open
Open
package main
- Exclude checks
exported function Resume should have comment or be unexported Open
Open
func Resume(task string) (*State, error) {
- Exclude checks