Skip to content

Commit a2a97db

Browse files
authored
Fix linter issues (#2420)
* chore: fixed typos Signed-off-by: Matej Vašek <[email protected]> * chore: removed trailing whitespaces Signed-off-by: Matej Vašek <[email protected]> * chore: added EoLs at EoFs Signed-off-by: Matej Vašek <[email protected]> --------- Signed-off-by: Matej Vašek <[email protected]>
1 parent 03a2e24 commit a2a97db

File tree

33 files changed

+74
-68
lines changed

33 files changed

+74
-68
lines changed

.chglog/CHANGELOG.tpl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@
5555
[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}
5656
{{ end -}}
5757
{{ end -}}
58-
{{ end -}}
58+
{{ end -}}

.chglog/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ options:
3737
- Header
3838
notes:
3939
keywords:
40-
- BREAKING CHANGE
40+
- BREAKING CHANGE

.golangci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# For defaults, see:
55
# https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml
66
#
7-
#
7+
#
88
#
99
run:
1010
timeout: 5m
@@ -28,4 +28,4 @@ issues:
2828
# Name Type = "value"
2929
# Name2 = "value2"
3030
# )
31-
text: "SA9004:"
31+
text: "SA9004:"

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ All notable changes to this project will be documented in this file. See [standa
590590
### Docs
591591
- fix function typos
592592
- setting up remote access to kind clusters
593-
- wireguard configuraiton for OS X
593+
- wireguard configuration for OS X
594594
- Kind cluster provisioning and TLS
595595
- separate repository and system docs
596596
- getting started with kubernetes, reorganization.

cmd/environment.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ DESCRIPTION
3737
the version of func, the version of the function spec, the default builder,
3838
available runtimes, and available templates.
3939
`,
40-
SuggestFor: []string{"env", "environemtn", "enviroment", "enviornment", "enviroment"},
41-
PreRunE: bindEnv("verbose", "format", "path"),
40+
PreRunE: bindEnv("verbose", "format", "path"),
4241
RunE: func(cmd *cobra.Command, args []string) error {
4342
return runEnvironment(cmd, newClient, version)
4443
},

cmd/templates.go

-5
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ EXAMPLES
5656
o Return Go templates in a specific repository
5757
$ {{rootCmdUse}} templates go --repository=https://github.com/boson-project/templates
5858
`,
59-
SuggestFor: []string{"template", "templtaes", "templatse", "remplates",
60-
"gemplates", "yemplates", "tenplates", "tekplates", "tejplates",
61-
"temolates", "temllates", "temppates", "tempmates", "tempkates",
62-
"templstes", "templztes", "templqtes", "templares", "templages", //nolint:misspell
63-
"templayes", "templatee", "templatea", "templated", "templatew"},
6459
PreRunE: bindEnv("json", "repository", "verbose"),
6560
RunE: func(cmd *cobra.Command, args []string) error {
6661
return runTemplates(cmd, args, newClient)

cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ DESCRIPTION
3131
$ {{rootCmdUse}} version -v
3232
3333
`,
34-
SuggestFor: []string{"vers", "verison"}, //nolint:misspell
34+
SuggestFor: []string{"vers", "version"}, //nolint:misspell
3535
PreRunE: bindEnv("verbose"),
3636
Run: func(cmd *cobra.Command, _ []string) {
3737
runVersion(cmd, version)

docs/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Allocate a new local cluster by running `hack/allocate.sh`.
9393

9494
### Registry
9595

96-
The allocation script sets up a local container registry and connects it to the cluster. This registry must be set as trusted and its address entered in the local hosts file. This is a one-time configuration and on Linux can be accomplished by running `hack/registry.sh`.
96+
The allocation script sets up a local container registry and connects it to the cluster. This registry must be set as trusted and its address entered in the local hosts file. This is a one-time configuration and on Linux can be accomplished by running `hack/registry.sh`.
9797

9898
On other systems, add `127.0.0.1 kind-registry` to your local hosts file and `"insecure-registries" = ["kind-registry:50000"]` to your docker daemon config (`docker/daemon.json`).
9999

docs/function-templates/golang.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ After the function has been built, it can be run locally.
4343
❯ func run
4444
```
4545

46-
Functions can be invoked with a simple HTTP request.
46+
Functions can be invoked with a simple HTTP request.
4747
You can test to see if the function is working by using your browser to visit
4848
http://localhost:8080. You can also access liveness and readiness
4949
endpoints at http://localhost:8080/health/liveness and
@@ -69,7 +69,7 @@ You can get the URL for your deployed function with the `info` command.
6969

7070

7171
Go functions can be tested locally on your computer. In the project there is
72-
a `handle_test.go` file which contains simple test which can be extended as needed.
72+
a `handle_test.go` file which contains simple test which can be extended as needed.
7373
Yo can run this test locally as you would do with any Go project.
7474

7575
```
@@ -79,8 +79,8 @@ Yo can run this test locally as you would do with any Go project.
7979
## Function reference
8080

8181
Boson Go functions have very few restrictions. You can add any required dependencies
82-
in `go.mod` and you may include additional local Go files. The only real requirement are
83-
that your project is defined in a `function` module and exports the function `Handle()`
82+
in `go.mod` and you may include additional local Go files. The only real requirement are
83+
that your project is defined in a `function` module and exports the function `Handle()`
8484
(supported contracts of this function will be discussed more deeply later).
8585
In this section, we will look in a little more detail at how Boson functions are invoked,
8686
and what APIs are available to you as a developer.
@@ -139,10 +139,10 @@ Handle(context.Context, cloudevents.Event) *cloudevents.Event
139139
Handle(context.Context, cloudevents.Event) (*cloudevents.Event, error)
140140
```
141141

142-
For example, a `CloudEvent` is received which contains a JSON string such as this in its data property,
142+
For example, a `CloudEvent` is received which contains a JSON string such as this in its data property,
143143

144144
```json
145-
{
145+
{
146146
"customerId": "0123456",
147147
"productId": "6543210"
148148
}
@@ -158,7 +158,7 @@ type Purchase struct {
158158
}
159159

160160
func Handle(ctx context.Context, event cloudevents.Event) err error {
161-
161+
162162
purchase := &Purchase{}
163163
if err = cloudevents.DataAs(purchase); err != nil {
164164
fmt.Fprintf(os.Stderr, "failed to parse incoming CloudEvent %s\n", err)

docs/function-templates/nodejs.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ After the function has been built, it can be run locally.
4444
❯ func run
4545
```
4646

47-
Functions can be invoked with a simple HTTP request.
47+
Functions can be invoked with a simple HTTP request.
4848
You can test to see if the function is working by using your browser to visit
4949
http://localhost:8080. You can also access liveness and readiness
5050
endpoints at http://localhost:8080/health/liveness and
@@ -108,7 +108,7 @@ parameter. For example, a `CloudEvent` is received which contains a
108108
JSON string such as this in its data property,
109109

110110
```json
111-
{
111+
{
112112
"customerId": "0123456",
113113
"productId": "6543210"
114114
}
@@ -154,7 +154,7 @@ extracted and sent with the response to the caller.
154154
function processCustomer(customer) {
155155
// process customer and return custom headers
156156
// the response will be '204 No content'
157-
return { headers: { customerid: customer.id } };
157+
return { headers: { customerid: customer.id } };
158158
}
159159
```
160160

@@ -168,7 +168,7 @@ function processCustomer(customer) {
168168
// process customer
169169
if (customer.restricted) {
170170
return { statusCode: 451 }
171-
}
171+
}
172172
}
173173
```
174174

@@ -182,7 +182,7 @@ function processCustomer(customer) {
182182
const err = new Error(‘Unavailable for legal reasons’);
183183
err.statusCode = 451;
184184
throw err;
185-
}
185+
}
186186
}
187187
```
188188

@@ -214,7 +214,7 @@ Access the function via `curl` to invoke it.
214214
curl http://example.com
215215
```
216216

217-
The function will log
217+
The function will log
218218

219219
```console
220220
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"Processing customer"}
@@ -223,7 +223,7 @@ The function will log
223223
Developers can control the log level by setting the `logLevel` value in
224224
`func.yaml` The possible options for this adhere to the options available
225225
for [`pino`](https://getpino.io/#/docs/api?id=level-string),
226-
and may be one of
226+
and may be one of
227227
`'fatal'`, `'error'`, `'warn'`, `'info'`, `'debug'`, `'trace'` or `'silent'`.
228228

229229
To temporarily override this value, set the environment variable `FUNC_LOG_LEVEL`
@@ -249,7 +249,7 @@ Access the function via `curl` to invoke it.
249249
```sh
250250
curl http://example.com?name=tiger
251251
```
252-
The function will log
252+
The function will log
253253

254254
```console
255255
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"tiger"}
@@ -274,7 +274,7 @@ Access the function via `curl` to invoke it.
274274
curl -X POST -d '{"hello": "world"}' -H'Content-type: application/json' http://example.com
275275
```
276276

277-
The function will log
277+
The function will log
278278
```console
279279
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"world"}
280280
```
@@ -293,7 +293,7 @@ Access the function via `curl` to invoke it.
293293
```console
294294
curl -H'x-custom-header: some-value’' http://example.com
295295
```
296-
The function will log
296+
The function will log
297297
```console
298298
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"some-value"}
299299
```

docs/function-templates/python.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ After the function has been built, it can be run locally.
4242
❯ func run
4343
```
4444

45-
Functions can be invoked with a simple HTTP request.
45+
Functions can be invoked with a simple HTTP request.
4646
You can test to see if the function is working by using your browser to visit
4747
http://localhost:8080. You can also access liveness and readiness
4848
endpoints at http://localhost:8080/health/liveness and
@@ -104,7 +104,7 @@ For example:
104104

105105
```python
106106
def main(context: Context):
107-
"""
107+
"""
108108
The context parameter contains the Flask request object and any
109109
CloudEvent received with the request.
110110
"""
@@ -115,7 +115,7 @@ def main(context: Context):
115115
116116
### Return Values
117117
Functions may return any value supported by Flask, as the invocation framework
118-
proxies these values directly to the Flask server. See the Flask
118+
proxies these values directly to the Flask server. See the Flask
119119
[documentation](https://flask.palletsprojects.com/en/1.1.x/quickstart/#about-responses)
120120
for more information.
121121

docs/function-templates/quarkus.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Project path: /home/developer/projects/fn
1010
Function name: fn
1111
Runtime: quarkus
1212
13-
❯ tree
13+
❯ tree
1414
fn
1515
├── func.yaml
1616
├── mvnw
@@ -56,7 +56,7 @@ After the function has been built, it can be run locally.
5656
❯ func run
5757
```
5858

59-
Functions can be invoked with a simple HTTP request.
59+
Functions can be invoked with a simple HTTP request.
6060
You can test to see if the function is working by using your browser to visit
6161
http://localhost:8080.
6262

@@ -150,7 +150,7 @@ then the object you return will be sent in the `data` property of a binary encod
150150

151151
If the function received vanilla HTTP,
152152
then the object you return will be sent as the HTTP response body. In the example below, an invocation of this function
153-
through an incoming `CloudEvent`, will receive a response with a `CloudEvent` containing a list of purchases as its
153+
through an incoming `CloudEvent`, will receive a response with a `CloudEvent` containing a list of purchases as its
154154
`data` property. If the invocation was via an ordinary HTTP request, the response will contain the same list of purchases
155155
in the HTTP response body, but no `CloudEvent` headers will be included.
156156

@@ -197,14 +197,14 @@ Note that the type parameter of `CloudEvent<T>` must satisfy the conditions desc
197197
#### Example
198198
```java
199199
public class Functions {
200-
200+
201201
private boolean _processPurchase(Purchase purchase) {
202202
// do stuff
203203
}
204-
204+
205205
public CloudEvent<Void> processPurchase(CloudEvent<Purchase> purchaseEvent) {
206206
System.out.println("subject is: ", purchaseEvent.subject());
207-
207+
208208
if (!_processPurchase(purchaseEvent.data())) {
209209
return CloudEventBuilder.create()
210210
.type("purchase.error")

docs/function-templates/typescript.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ After the function has been built, it can be run locally.
4747
❯ func run
4848
```
4949

50-
Functions can be invoked with a simple HTTP request.
50+
Functions can be invoked with a simple HTTP request.
5151
You can test to see if the function is working by using your browser to visit
5252
http://localhost:8080. You can also access liveness and readiness
5353
endpoints at http://localhost:8080/health/liveness and
@@ -136,7 +136,7 @@ function handle(context: Context, cloudevent?: CloudEvent): Record<string, strin
136136
// process customer and return custom headers
137137
// the response will be '204 No content'
138138
const customer = cloudevent.data;
139-
return { headers: { "customer-id": customer.id } };
139+
return { headers: { "customer-id": customer.id } };
140140
}
141141
```
142142

@@ -147,10 +147,10 @@ Developers may set the response code returned to the caller by adding a
147147
#### Example
148148
```js
149149
function handle(context: Context, cloudevent?: CloudEvent): Record<string, string> {
150-
// process customer
150+
// process customer
151151
const customer = cloudevent.data;
152152
if (customer.restricted) {
153-
return {
153+
return {
154154
statusCode: 451
155155
}
156156
}
@@ -172,7 +172,7 @@ function handle(context: Context, cloudevent?: CloudEvent) Record<string, string
172172
const err = new Error(‘Unavailable for legal reasons’);
173173
err.statusCode = 451;
174174
throw err;
175-
}
175+
}
176176
}
177177
```
178178

@@ -204,7 +204,7 @@ Access the function via `curl` to invoke it.
204204
curl http://example.com
205205
```
206206

207-
The function will log
207+
The function will log
208208

209209
```console
210210
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"Processing customer"}
@@ -230,7 +230,7 @@ Access the function via `curl` to invoke it.
230230
```sh
231231
curl "http://example.com?name=tiger"
232232
```
233-
The function will log
233+
The function will log
234234

235235
```console
236236
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"tiger"}
@@ -256,7 +256,7 @@ Access the function via `curl` to invoke it.
256256
curl -X POST -d '{"hello": "world"}' -H'Content-type: application/json' http://example.com
257257
```
258258

259-
The function will log
259+
The function will log
260260
```console
261261
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"world"}
262262
```
@@ -276,7 +276,7 @@ Access the function via `curl` to invoke it.
276276
```console
277277
curl -H'x-custom-header: some-value’' http://example.com
278278
```
279-
The function will log
279+
The function will log
280280
```console
281281
{"level":30,"time":1604511655265,"pid":3430203,"hostname":"localhost.localdomain","reqId":1,"msg":"some-value"}
282282
```

docs/reference/func_yaml.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ buildEnvs:
6969
### `envs`
7070

7171
The `envs` field allows you to set environment variables that will be
72-
available to your function at runtime.
72+
available to your function at runtime.
7373
1. Environment variable can be set directly from a value
7474
2. Environment variable can be set from a local environment value. Eg. `'{{ env:LOCAL_ENV_VALUE }}'`, for more details see [Local Environment Variables section](#local-environment-variables).
7575
3. Environment variable can be set from a key in a Kubernetes Secret or ConfigMap. This Secret/ConfigMap needs to be created before it is referenced in a function. Eg. `'{{ secret:mysecret:key }}'` where `mysecret` is the name of the Secret and `key` is the referenced key; or `{{ configMap:myconfigmap:key }}` where `myconfigmap` is the name of the ConfigMap and `key` is the referenced key.
@@ -132,18 +132,18 @@ must exist in the namespace to succeed.
132132
More info: https://k8s.io/docs/tasks/configure-pod-container/configure-service-account
133133

134134
### `options`
135-
Options allows you to set specific configuration for the deployed function, allowing you to tweak Knative Service options related to autoscaling and other properties. If these options are not set, the Knative defaults will be used.
135+
Options allows you to set specific configuration for the deployed function, allowing you to tweak Knative Service options related to autoscaling and other properties. If these options are not set, the Knative defaults will be used.
136136
- `scale`
137137
- `min`: Minimum number of replicas. Must me non-negative integer, default is 0. See related [Knative docs](https://knative.dev/docs/serving/autoscaling/scale-bounds/#lower-bound).
138138
- `max`: Maximum number of replicas. Must me non-negative integer, default is 0 - meaning no limit. See related [Knative docs](https://knative.dev/docs/serving/autoscaling/scale-bounds/#upper-bound).
139139
- `metric`: Defines which metric type is watched by the Autoscaler. Could be `concurrency` (default) or `rps`. See related [Knative docs](https://knative.dev/docs/serving/autoscaling/autoscaling-metrics/).
140140
- `target`: Recommendation for when to scale up based on the concurrent number of incoming request. Defaults to `options.resources.limits.concurrency` when given. Can be float value greater than 0.01, default is 100. See related [Knative docs](https://knative.dev/docs/serving/autoscaling/concurrency/#soft-limit).
141141
- `utilization`: Percentage of concurrent requests utilization before scaling up. Can be float value between 1 and 100, default is 70. See related [Knative docs](https://knative.dev/docs/serving/autoscaling/concurrency/#target-utilization).
142142
- `resources`
143-
- `requests`
143+
- `requests`
144144
- `cpu`: A CPU resource request for the container with deployed function. See related [Kubernetes docs](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#requests-and-limits).
145145
- `memory`: A memory resource request for the container with deployed function. See related [Kubernetes docs](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#requests-and-limits).
146-
- `limits`
146+
- `limits`
147147
- `cpu`: A CPU resource limit for the container with deployed function. See related [Kubernetes docs](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#requests-and-limits).
148148
- `memory`: A memory resource limit for the container with deployed function. See related [Kubernetes docs](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#requests-and-limits).
149149
- `concurrency`: Hard Limit of concurrent requests to be processed by a single replica. Can be integer value greater than or equal to 0, default is 0 - meaning no limit. See related [Knative docs](https://knative.dev/docs/serving/autoscaling/concurrency/#hard-limit).

0 commit comments

Comments
 (0)