summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2012-11-05 18:35:56 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2013-07-06 11:59:48 +0100
commit937663c53efee329113824c6c973baa421e0a780 (patch)
tree268249c2d7e7de28be55d26aa0b7192d4449b6e7
parent90dc367873c9224d99345585ed5fe96d0fe93717 (diff)
Add a .dir-locals.el which sets the coding standard
Add a .dir-locals.el which sets the something approximating the code standards specified in doc/internal_docs/coding_standard.txt
-rw-r--r--.dir-locals.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..9d9701c
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,4 @@
+((nil . ((intent-tabs-mode . f)
+ (fill-column . 78)))
+ (c-mode . ((c-basic-offset . 4)
+ (c-file-style . "k&r" ))))