-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEldev
More file actions
19 lines (15 loc) · 559 Bytes
/
Eldev
File metadata and controls
19 lines (15 loc) · 559 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; -*- mode: emacs-lisp; lexical-binding: t; no-byte-compile: t -*-
;; 1.8 for source directory support
(eldev-require-version "1.8")
(eldev-use-package-archive 'gnu-elpa)
(eldev-use-package-archive 'melpa)
;; Main files
(setf eldev-project-source-dirs '("lisp"))
(setf eldev-project-main-file "org-newtab.el"
eldev-main-fileset "./lisp/org-newtab*.el")
;; Test files
(eldev-add-loading-roots 'test "lisp")
(setf eldev-test-fileset "./test/*.el")
;; Package-lint
(setq package-lint-main-file "lisp/org-newtab.el"
sentence-end-double-space nil)