-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEask
28 lines (20 loc) · 806 Bytes
/
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
(package "lsp-ltex-plus"
"0.3.0"
"LSP Clients for LTEX+")
(website-url "https://github.com/emacs-languagetool/lsp-ltex-plus")
(keywords "convenience" "lsp" "languagetool" "checker")
(package-file "lsp-ltex-plus.el")
(script "test" "echo \"Error: no test specified\" && exit 1")
(source 'gnu)
(source 'melpa)
(source 'jcs-elpa)
(depends-on "emacs" "27.1")
(depends-on "lsp-mode")
(depends-on "github-tags") ; TODO: Move to `development' scope?
(development
(depends-on "markdown-mode"))
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
(add-hook 'eask-before-compile-hook
(lambda ()
(setq byte-compile-error-on-warn t
byte-compile-docstring-max-column 1000)))