Spaces:
Sleeping
Sleeping
File size: 148 Bytes
4fc4790 | 1 2 3 4 5 6 | #!/bin/bash
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
CONFIG="${ROOT}/.swiftformat"
swiftformat --config "$CONFIG" "$ROOT/Sources"
|