From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47345) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXRyg-000290-ST for qemu-devel@nongnu.org; Thu, 03 Sep 2015 06:42:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXRyg-00021Q-5y for qemu-devel@nongnu.org; Thu, 03 Sep 2015 06:42:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47715) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXRyg-00021M-1p for qemu-devel@nongnu.org; Thu, 03 Sep 2015 06:42:46 -0400 From: Gerd Hoffmann Date: Thu, 3 Sep 2015 12:42:32 +0200 Message-Id: <1441276952-4782-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH] add scripts/indent.sh List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , =?UTF-8?q?K=C5=91v=C3=A1g=C3=B3=20Zolt=C3=A1n?= --- 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