Add markdown-unused-refs
[markdown-mode.git] / .dir-locals.el
blob1ca764965480dea6b5fdd5f91ede68f17e465441
1 ;;; Directory Local Variables
2 ;;; See Info node `(emacs) Directory Variables' for more information.
4 ((nil
5 (require-final-newline . t)
6 ;; not tabs in code
7 (indent-tabs-mode)
8 ;; checkdoc, don't botch English grammar
9 (checkdoc-arguments-in-order-flag . nil)
10 ;; checkdoc, we don't want docs for internal vars
11 (checkdoc-force-docstrings-flag . nil))
12 (emacs-lisp-mode
13 ;; checkdoc, one space is enough
14 (sentence-end-double-space . nil)
15 ;; remove trailing whitespace
16 (eval . (add-hook 'before-save-hook 'delete-trailing-whitespace nil t))))