mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
b8edc59edb
Original commit message from CVS: adding gst-indent as a noinst tool
16 lines
351 B
Bash
Executable file
16 lines
351 B
Bash
Executable file
#!/bin/bash
|
|
indent \
|
|
--braces-on-if-line \
|
|
--blank-lines-after-declarations \
|
|
--case-brace-indentation0 \
|
|
--case-indentation2 \
|
|
--braces-after-struct-decl-line \
|
|
--line-length80 \
|
|
--use-tabs \
|
|
--cuddle-else \
|
|
--dont-line-up-parentheses \
|
|
--continuation-indentation4 \
|
|
--honour-newlines \
|
|
--tab-size8 \
|
|
--indent-level2 \
|
|
$*
|