-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# ignore these extensions | ||
*.elc | ||
|
||
/.eask | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
(package "lsp-ivy" | ||
"0.5" | ||
"LSP ivy integration") | ||
|
||
(website-url "https://github.com/emacs-lsp/lsp-ivy") | ||
(keywords "languages" "debug") | ||
|
||
(package-file "lsp-ivy.el") | ||
|
||
(script "test" "echo \"Error: no test specified\" && exit 1") | ||
|
||
(source "gnu") | ||
(source "melpa") | ||
|
||
(depends-on "emacs" "27.1") | ||
(depends-on "dash" "2.14.1") | ||
(depends-on "lsp-mode" "6.2.1") | ||
(depends-on "ivy" "0.13.0") | ||
|
||
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
EMACS ?= emacs | ||
EASK ?= eask | ||
|
||
.PHONY: clean checkdoc lint package install compile test | ||
|
||
ci: clean package install compile | ||
|
||
package: | ||
@echo "Packaging..." | ||
$(EASK) package | ||
|
||
install: | ||
@echo "Installing..." | ||
$(EASK) install | ||
|
||
compile: | ||
@echo "Compiling..." | ||
$(EASK) compile | ||
|
||
test: | ||
@echo "Testing..." | ||
$(EASK) test ert ./test/*.el | ||
|
||
checkdoc: | ||
@echo "Run checkdoc..." | ||
$(EASK) lint checkdoc | ||
|
||
lint: | ||
@echo "Run package-lint..." | ||
$(EASK) lint package | ||
|
||
clean: | ||
$(EASK) clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters