Files
langsmith-java/scripts/kotlin-format
T
stainless-app[bot] 9e876f623d chore: sync repo
2025-11-05 19:10:50 +00:00

8 lines
158 B
Bash
Executable File

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
find . -name "*.kt" -not -path "./buildSrc/build/*" -print0 | xargs -0 -r ktfmt --kotlinlang-style "$@"