Skip to content

standard-http-method-constant

Prefer net/http method constants.

Updated View as Markdown

Default severity: warning

Reports hardcoded standard methods passed to http.NewRequest and http.NewRequestWithContext. Use constants such as http.MethodGet to make protocol intent explicit.

Bad

request, err := http.NewRequest("GET", endpoint, nil)

Good

request, err := http.NewRequest(http.MethodGet, endpoint, nil)
Navigation

Type to search…

↑↓ navigate↵ selectEsc close