* Add iOS linter & report issues on PR * Fix lint errors --------- Co-authored-by: Seph Soliman <github@seph.dk>
7 lines
194 B
Bash
Executable File
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 |