Skip to content

Instantly share code, notes, and snippets.

@raphaelguye
Last active September 29, 2021 14:03
Show Gist options
  • Save raphaelguye/3f9283a6e0adc635d25b4828d046403f to your computer and use it in GitHub Desktop.
Save raphaelguye/3f9283a6e0adc635d25b4828d046403f to your computer and use it in GitHub Desktop.
Xcode Script - SwiftFormat
if which swiftformat >/dev/null; then
  swiftformat --lint . # for autocorrect: swiftformat .
else
  echo "warning: SwiftFormat not installed"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment