mirror of
https://github.com/krzysztofzablocki/Sourcery.git
synced 2026-04-07 19:17:40 +00:00
9 lines
246 B
Bash
Executable File
9 lines
246 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
if which swiftlint >/dev/null; then
|
|
swiftlint autocorrect
|
|
swiftlint
|
|
else
|
|
echo "warning: SwiftLint not installed. Install using brew update && brew install swiftlint or download from https://github.com/realm/SwiftLint."
|
|
fi
|