--- scripts/indent.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 scripts/indent.sh
diff --git a/scripts/indent.sh b/scripts/indent.sh new file mode 100755 index 0000000..8f045ec --- /dev/null +++ b/scripts/indent.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# +# indent wrapper script, with args to format +# source code according to qemu coding style. +# +indent --ignore-profile \ + --k-and-r-style \ + --line-length 80 \ + --indent-level 4 \ + --no-tabs \ + "$@" -- 1.8.3.1