5 lines
175 B
Bash
5 lines
175 B
Bash
|
#!/bin/sh
|
||
|
# https://github.com/shyiko/ktlint pre-commit hook
|
||
|
|
||
|
git diff --name-only --relative | grep '\.kt[s"]\?$' | xargs ktlint --relative .
|
||
|
if [ $? -ne 0 ]; then exit 1; fi
|