mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
7baa6c18e7
Original commit message from CVS: don't mix tabs and spaces
16 lines
348 B
Bash
Executable file
16 lines
348 B
Bash
Executable file
#!/bin/sh
|
|
indent \
|
|
--braces-on-if-line \
|
|
--blank-lines-after-declarations \
|
|
--case-brace-indentation0 \
|
|
--case-indentation2 \
|
|
--braces-after-struct-decl-line \
|
|
--line-length80 \
|
|
--no-tabs \
|
|
--cuddle-else \
|
|
--dont-line-up-parentheses \
|
|
--continuation-indentation4 \
|
|
--honour-newlines \
|
|
--tab-size8 \
|
|
--indent-level2 \
|
|
$*
|