react-native-camera-kit/scripts/check-ios.sh
David Bertet a13aa787c4
Add iOS linter & report issues on PR (#634)
* Add iOS linter & report issues on PR

* Fix lint errors

---------

Co-authored-by: Seph Soliman <github@seph.dk>
2024-04-30 16:10:07 -07:00

7 lines
194 B
Bash
Executable File

#!/bin/sh
if which swiftlint >/dev/null; then
swiftlint lint --quiet --autocorrect && swiftlint lint --quiet
else
echo "warning: SwiftLint not installed, use `brew bundle` to install it"
fi