mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
17 lines
351 B
Text
17 lines
351 B
Text
|
#!/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 \
|
||
|
$*
|