-
Notifications
You must be signed in to change notification settings - Fork 0
/
Eask
37 lines (28 loc) · 1.05 KB
/
Eask
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
; -*- mode: emacs-lisp; lexical-binding: t -*-
(eval-when-compile
(defvar sentence-end-double-space)
(defvar checkdoc-verb-check-experimental-flag))
;; Domain Specific Language
;; https://emacs-eask.github.io/DSL/
(package "woerterbuch"
"0.1.0"
"Lookup definitions and synonyms for German words")
(website-url "https://github.com/hubisan/woerterbuch")
(keywords "dictionary" "thesaurus" "convenience")
(license "GPLv3")
(package-file "woerterbuch.el")
(files "woerterbuch.el")
;; https://emacs-eask.github.io/DSL/#-source-alias
(source "gnu")
(source "nongnu")
(source "melpa")
;; https://emacs-eask.github.io/DSL/#-depends-on-package-name-rest-recipe
(depends-on "emacs" "29.1")
;; https://emacs-eask.github.io/DSL/#-development-rest-body
(development
(depends-on "buttercup")
(depends-on "with-simulated-input"))
;; Tell checkdoc not to demand two spaces after a period.
(setq sentence-end-double-space nil)
;; Dont' check docstring for correct verb use.
(setq checkdoc-verb-check-experimental-flag nil)