Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,10 @@ platform :ios do
xcodeproj: "BeeSwift.xcodeproj"
)
end

lane :format do
Dir.chdir("..") do
sh("swift-format", "--recursive", "--in-place", ".")
end
end
end
8 changes: 8 additions & 0 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do



### ios format

```sh
[bundle exec] fastlane ios format
```



----

This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
Expand Down
Loading