Better markdown-header-face fix
[markdown-mode.git] / .dir-locals.el
blobcb39f4c512bc6a54be76c1f5fa257c22f1c9c213
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, one space is enough
9 (sentence-end-double-space . nil)
10 ;; checkdoc, don't botch English grammar
11 (checkdoc-arguments-in-order-flag . nil)
12 ;; checkdoc, we don't want docs for internal vars
13 (checkdoc-force-docstrings-flag . nil))
14 (emacs-lisp-mode
15 ;; remove trailing whitespace
16 (eval . (add-hook 'before-save-hook 'delete-trailing-whitespace nil t))))