15 lines
300 B
Bash
Executable File
15 lines
300 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Pre-commit hook to auto-format code with Spotless
|
|
#
|
|
# To install: ln -s ../../hooks/pre-commit .git/hooks/pre-commit
|
|
#
|
|
|
|
echo "Running Spotless formatter..."
|
|
./gradlew spotlessApply
|
|
|
|
# Re-add any files that were modified by spotless
|
|
git diff --name-only --cached | xargs git add
|
|
|
|
exit 0
|