react-native-vision-camera/scripts/check-all.sh

16 lines
234 B
Bash
Raw Normal View History

2021-03-09 04:19:18 -07:00
#!/bin/bash
echo "Formatting Swift code.."
./scripts/swiftformat.sh
echo "Linting Swift code.."
./scripts/swiftlint.sh
echo "Linting Kotlin code.."
./scripts/ktlint.sh
echo "Linting JS/TS code.."
yarn lint --fix
echo "All done!"