summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2009-12-31 19:31:00 -0700
committerDave Smith <dizzyd@dizzyd.com>2009-12-31 19:31:00 -0700
commit48c2c169abd79aaec3fc147324708bc64720cc53 (patch)
treee4d876539385ca58726312db04894d6684aef019 /HACKING
parent9f83329a3cb45ddc33c600e413bc7fc0f9ffd2ca (diff)
parent0817dec7ca3a24955cc8f08fb359bf0f77ae1f4d (diff)
Merging w/ bitbucket
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING11
1 files changed, 11 insertions, 0 deletions
diff --git a/HACKING b/HACKING
new file mode 100644
index 0000000..7b29add
--- /dev/null
+++ b/HACKING
@@ -0,0 +1,11 @@
+Indenting
+~~~~~~~~~
+To have consistent indenting we have vi modeline/emacs local variable
+headers in rebar's source files. This works automatically with vi.
+With Emacs you have to declare 'erlang-indent-level set to 4'
+as a safe local variable value. If not configured Emacs will prompt
+you to save this as part of custom-set-variables:
+ '(safe-local-variable-values (quote ((erlang-indent-level . 4))))
+You can also tell Emacs to ignore file variables:
+(setq enable-local-variables nil
+ enable-local-eval nil)