Add typos check to Makefile (#20051)

This commit is contained in:
Anis Eleuch 2024-07-08 22:39:49 +01:00 committed by GitHub
parent cf371da346
commit b433bf14ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -41,6 +41,7 @@ check-gen: ## check for updated autogenerated files
lint: getdeps ## runs golangci-lint suite of linters lint: getdeps ## runs golangci-lint suite of linters
@echo "Running $@ check" @echo "Running $@ check"
@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml @$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
@command typos && typos ./ || echo "typos binary is not found.. skipping.."
lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
@echo "Running $@ check" @echo "Running $@ check"

View File

@ -199,7 +199,7 @@ func fwdStatusToAPIError(resp *http.Response) *APIError {
return nil return nil
} }
// GetObjectLamdbaHandler - GET Object with transformed data via lambda functions // GetObjectLambdaHandler - GET Object with transformed data via lambda functions
// ---------- // ----------
// This implementation of the GET operation applies lambda functions and returns the // This implementation of the GET operation applies lambda functions and returns the
// response generated via the lambda functions. To use this API, you must have READ access // response generated via the lambda functions. To use this API, you must have READ access

View File

@ -138,7 +138,7 @@ func (target *WebhookTarget) isActive() (bool, error) {
return true, nil return true, nil
} }
// Stat - returns lamdba webhook target statistics such as // Stat - returns lambda webhook target statistics such as
// current calls in progress, successfully completed functions // current calls in progress, successfully completed functions
// failed functions. // failed functions.
func (target *WebhookTarget) Stat() event.TargetStat { func (target *WebhookTarget) Stat() event.TargetStat {