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>2012-11-21 14:02:58 +0000
commit86c7f36f7586cf444f58fccd83717344555963c0 (patch)
tree93fec84814d9a11dcc121814a57245babd02178e
parent222c636b7c82ad6f6c8f2c8081e36d1b03f6f971 (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.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..93922b0
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,5 @@
+((nil . ((intent-tabs-mode . f)
+ (fill-column . 78)))
+ (c-mode . ((c-basic-offset . 4)
+ (c-file-style . "k&r" ))))
+