nicklockwood / SwiftFormat

A command-line tool and Xcode Extension for formatting Swift code
MIT License
7.77k stars 630 forks source link

Breaks `PreviewProvider` live update #969

Closed markst closed 3 years ago

markst commented 3 years ago

Appears that adding the Xcode build phase breaks our PreviewProvider live views.

markst commented 3 years ago

Based on SO answer it appears we can conditionally run the swiftformat when previewing:

if [ $ENABLE_PREVIEWS = NO ]; then
  "${PODS_ROOT}/SwiftFormat/CommandLineTool/swiftformat" "$SRCROOT"
fi

https://stackoverflow.com/questions/57261501/xcode-11-beta-4-swiftui-preview-build-phase-agvtool-incompatible