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 2298702 commit 6c216d4Copy full SHA for 6c216d4
Makefile
@@ -52,11 +52,11 @@ benchmark:
52
swift-composable-architecture-benchmark
53
54
format:
55
- swift format \
56
- --ignore-unparsable-files \
57
- --in-place \
58
- --recursive \
59
- ./Examples ./Package.swift ./Sources ./Tests
+ find . \
+ -path '*/Documentation.docc' -prune -o \
+ -name '*.swift' \
+ -not -path '*/.*' -print0 \
+ | xargs -0 swift format --ignore-unparsable-files --in-place
60
61
.PHONY: format test-all test-swift test-workspace
62
0 commit comments