We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20954a commit 0d407ddCopy full SHA for 0d407dd
.github/workflows/goreleaser.yaml
@@ -1,13 +1,10 @@
1
name: goreleaser
2
-
3
on:
4
push:
5
tags:
6
- "*"
7
8
permissions:
9
contents: write
10
11
jobs:
12
goreleaser:
13
runs-on: ubuntu-latest
README.md
@@ -49,6 +49,20 @@ You can also use the binaries from
49
cat a.yaml | yamlfmt > b.yaml
50
```
51
52
+- To format every file in your current directory and subdirectorys:
53
+
54
+ - Using `find`:
55
56
+ ```bash
57
+ yamlfmt -w $(find -name "*.yaml")
58
+ ```
59
60
+ - Using `fd`:
61
62
63
+ yamlfmt -w $(fd -H -e yaml)
64
65
66
### Editor Integration
67
68
- Neovim / Vim
0 commit comments