91d7135562
* chore: add swift linter * chore: add clang linters * chore: add kotlin linter * chore(ci): update workflows * chore(ci): clean workflows
7 lines
252 B
Bash
Executable File
7 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if which swiftlint >/dev/null; then
|
|
cd ios && swiftlint --quiet --fix && swiftlint --quiet
|
|
else
|
|
echo "[ERROR]: SwiftLint is not installed - Install with 'brew install swiftlint' (or manually from https://github.com/realm/SwiftLint)"
|
|
fi |