mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 09:16:01 +08:00
15 lines
341 B
Bash
Executable File
15 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Format Dart files
|
|
echo "Formatting Dart files..."
|
|
|
|
if command -v dart &> /dev/null; then
|
|
find .. -name "*.dart" \
|
|
-not -path "*/.*" \
|
|
-not -path "*/node_modules/*" \
|
|
-not -path "*/build/*" \
|
|
-exec dart format {} +
|
|
else
|
|
echo "Warning: dart not found. Skipping Dart formatting."
|
|
fi |