03b57a7d27
* Use clang-format * Create .clang-format * Update .clang-format * Update .clang-format * Update .clang-format * Only search in cpp dirs * Update clang-format.sh * Update .clang-format * Update .clang-format * Update .clang-format * Format C++ code! * Use version 16 * Update clang-format.sh * Remove Shaders.ts * fix: Lint Swift
20 lines
306 B
Bash
Executable File
20 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Formatting Swift code.."
|
|
./scripts/swiftformat.sh
|
|
|
|
echo "Linting Swift code.."
|
|
./scripts/swiftlint.sh
|
|
|
|
echo "Linting Kotlin code.."
|
|
./scripts/ktlint.sh
|
|
|
|
echo "Formatting C++ code.."
|
|
./scripts/clang-format.sh
|
|
|
|
echo "Linting JS/TS code.."
|
|
yarn lint --fix
|
|
yarn typescript
|
|
|
|
echo "All done!"
|