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 ad9ab52 commit 99c8641Copy full SHA for 99c8641
.github/workflows/check.yaml
@@ -110,7 +110,7 @@ jobs:
110
find . -name *.mod.json -exec npx prettier --write {} \;
111
find . -name *.pkg.json -exec npx prettier --write {} \;
112
git diff --exit-code;
113
-
+# here doesn't run `moon install`, so .mooncakes is not existed
114
check-typos:
115
runs-on: ubuntu-latest
116
justfile
@@ -1,4 +1,5 @@
1
fmt-json:
2
- find . -name *.mod.json -exec npx prettier --write {} \;
3
- find . -name *.pkg.json -exec npx prettier --write {} \;
4
+ fd moon.mod.json -x npx prettier --write {}
+ fd moon.pkg.json -x npx prettier --write {}
+
5
+# https://github.com/sharkdp/fd
0 commit comments