-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathEask
More file actions
30 lines (21 loc) · 844 Bytes
/
Eask
File metadata and controls
30 lines (21 loc) · 844 Bytes
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
;; -*- mode: eask; lexical-binding: t -*-
(package "gdscript-mode"
"1.5.0"
"Major mode for Godot's GDScript language")
(website-url "https://github.com/godotengine/emacs-gdscript-mode/")
(keywords "languages")
(package-file "gdscript-mode.el")
(files "gdscript-*.el")
(script "test" "echo \"Error: no test specified\" && exit 1")
(source 'gnu)
(source 'melpa)
(depends-on "emacs" "28.1")
(development
(depends-on "projectile")
(depends-on "hydra"))
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
(add-hook 'eask-before-compile-hook
(lambda ()
;; TODO: Enable this once the code base is stable enough.
;;(setq byte-compile-error-on-warn t)
(setq byte-compile-docstring-max-column 1000)))