summaryrefslogtreecommitdiff
path: root/doc/coding_style.mdwn
diff options
context:
space:
mode:
authorJoey Hess2014-11-01 13:34:22 -0400
committerJoey Hess2014-11-01 13:34:22 -0400
commitb2f60db9d192f1fe6b761b58839a44b8002dcfa6 (patch)
treeb4de21e15d818f3784329bc870a42ecb90392e9b /doc/coding_style.mdwn
parentab7efe2cd0f3bd6508b164e458329b41b313a852 (diff)
reorg
Diffstat (limited to 'doc/coding_style.mdwn')
-rw-r--r--doc/coding_style.mdwn22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/coding_style.mdwn b/doc/coding_style.mdwn
index d2dbaf2f..64d1fb69 100644
--- a/doc/coding_style.mdwn
+++ b/doc/coding_style.mdwn
@@ -30,17 +30,6 @@ each indented with a tab.
foo = ...
bar = ...
-Note for emacs users: You can put the following snippet into a file called
-`.dir-locals.el` at root of propellor's source tree to ensure these indentation
-rules are enforced:
-
- ((nil . ((indent-tabs-mode . t)
- (tab-width . 4)
- (fill-column . 80)))
- ;; Warn about spaces used for indentation:
- (haskell-mode . ((eval . (highlight-regexp "^ *")))))
-
-
Where clauses for instance definitions and modules tend to appear at the end
of a line, rather than on a separate line.
@@ -107,3 +96,14 @@ If you feel that this coding style leads to excessive amounts of horizontal
or vertical whitespace around your code, making it hard to fit enough of it
on the screen, consider finding a better abstraction, so the code that
does fit on the screen is easily understandable. ;)
+
+----
+
+Note for emacs users: You can put the following snippet into a file called
+`.dir-locals.el` at root of propellor's source tree to use tabs for indentation:
+
+ ((nil . ((indent-tabs-mode . t)
+ (tab-width . 4)
+ (fill-column . 80)))
+ ;; Warn about spaces used for indentation:
+ (haskell-mode . ((eval . (highlight-regexp "^ *")))))