mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 20:48:30 +00:00
17 lines
224 B
Bash
Executable file
17 lines
224 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/lint
|
|
# mas
|
|
#
|
|
# Linting checks for CI "Lint" stage.
|
|
#
|
|
|
|
echo "==> 🚨 Linting mas"
|
|
|
|
echo
|
|
echo "--> 🕊️ Swift"
|
|
swiftlint lint --strict
|
|
|
|
echo
|
|
echo "--> 📜 Bash"
|
|
shfmt -i 2 -l -w contrib/ script/
|