melpa/recipes/.dir-locals.el
2014-09-03 15:57:15 +01:00

14 lines
921 B
EmacsLisp

((emacs-lisp-mode . ((flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc))))
(nil . ((eval . (when (and (buffer-file-name)
(file-regular-p (buffer-file-name))
(string-match-p "^[^.]" (buffer-file-name)))
(emacs-lisp-mode)
(when (fboundp 'flycheck-mode)
(flycheck-mode -1))
(unless (featurep 'package-build)
(let ((load-path (cons ".." load-path)))
(require 'package-build)))
(package-build-minor-mode)
(set (make-local-variable 'package-build-working-dir) (expand-file-name "../working/"))
(set (make-local-variable 'package-build-archive-dir) (expand-file-name "../packages/"))
(set (make-local-variable 'package-build-recipes-dir) default-directory))))))