summaryrefslogtreecommitdiff
path: root/tools/cs-indent
blob: fde35aed2cc2560a0603e1f5694514fbca440bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
astyle \
  --mode=cs \
  --style=java \
  --indent=spaces=2 \
  --indent-switches \
  --indent-namespaces \
  --pad=oper \
  --unpad=paren \
  --pad=paren-out \
  --convert-tabs \
  --suffix=none \
  $* > /dev/null