Skip to content

Commit 23d4f3e

Browse files
authored
docs: change the language name from Golang to Go (google#226)
See https://go.dev/doc/faq#go_or_golang
1 parent 1530f2c commit 23d4f3e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v4
3333
with:
3434
fetch-depth: 0
35-
- name: Setup Golang
35+
- name: Setup Go
3636
uses: actions/setup-go@v5
3737
with:
3838
go-version: 1.23

.pre-commit-hooks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# limitations under the License.
1414

1515
- id: yamlfmt
16-
name: yamlfmt
17-
description: This hook uses github.com/google/yamlfmt to format yaml files. Requires golang >1.18 to be installed.
16+
name: yamlfmt
17+
description: This hook uses github.com/google/yamlfmt to format yaml files. Requires Go >1.18 to be installed.
1818
entry: yamlfmt
1919
language: golang
2020
types: [yaml]

docs/config-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The command package defines the main command engine that `cmd/yamlfmt` uses. It
4444
| `exclude` | []string | [] | The paths for the command to exclude from formatting. See [Specifying Paths][] for more details. |
4545
| `gitignore_excludes` | bool | false | Use gitignore files for exclude paths. This is in addition to the patterns from the `exclude` option. |
4646
| `gitignore_path` | string | `.gitignore` | The path to the gitignore file to use. |
47-
| `regex_exclude` | []string | [] | Regex patterns to match file contents for, if the file content matches the regex the file will be excluded. Use [Golang regexes](https://regex101.com/). |
47+
| `regex_exclude` | []string | [] | Regex patterns to match file contents for, if the file content matches the regex the file will be excluded. Use [Go regexes](https://regex101.com/). |
4848
| `extensions` | []string | [] | The extensions to use for standard mode path collection. See [Specifying Paths][] for more details. |
4949
| `formatter` | map[string]any | `type: basic` | Formatter settings. See [Formatter](#formatter) for more details. |
5050
| `output_format` | `default` or `line` | `default` | The output format to use. See [Output docs](./output.md) for more details. |

schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"type": "string"
5757
},
5858
"default": [],
59-
"description": "Regex patterns to match file contents for, if the file content matches the regex the file will be excluded. Use Golang regexes."
59+
"description": "Regex patterns to match file contents for, if the file content matches the regex the file will be excluded. Use Go regexes."
6060
},
6161
"extensions": {
6262
"type": "array",

0 commit comments

Comments
 (0)