mirror of
https://github.com/chenasraf/text-transform.nvim.git
synced 2026-05-18 01:48:57 +00:00
13 lines
249 B
Bash
Executable File
13 lines
249 B
Bash
Executable File
#!/usr/bin/env bash
|
|
diffs=$(stylua --check --output-format=json .)
|
|
if [[ "$?" -ne 0 ]]; then
|
|
filelist="$(echo "$diffs" | jq -r '.file')"
|
|
echo stylua "$filelist"
|
|
echo git add "$filelist"
|
|
fi
|
|
make lint
|
|
# make test
|
|
make documentation
|
|
git add doc
|
|
|