From 81fa217b8d886aa9f3228ef40bbd25557c630540 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 1 Dec 2012 18:42:59 +0100 Subject: [PATCH] added tabwidth info --- developer_manual/codingguidelines.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/developer_manual/codingguidelines.rst b/developer_manual/codingguidelines.rst index 33c10a768..9c26ac987 100644 --- a/developer_manual/codingguidelines.rst +++ b/developer_manual/codingguidelines.rst @@ -1,10 +1,11 @@ -Coding Guidelines -================= +Coding Style Guidelines +======================= General ------- * Maximum line-length of 80 characters * Use tabs to indent +* A tab is 4 spaces wide * Opening braces of blocks are on the same line as the definition * Quotes: ' for everything, " for HTML attributes (

)