Skip to content

Commit

Permalink
Fix byte compile by excludig tests merged from clojure-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kommen committed Oct 31, 2024
1 parent 96eb9d2 commit 40ee640
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Eldev
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@

(setq eldev-project-main-file "clojure-ts-mode.el")

;; Exclude tests merged from clojure-mode from running and linting
;; Exclude tests merged from clojure-mode from running, linting and byte compiling
(setf eldev-test-fileset
`(:and ,eldev-test-fileset
(:not "./clojure-mode-*")))
(setf eldev-standard-excludes
`(:or ,eldev-standard-excludes "./clojure-mode-*"))
(setf eldev-lint-ignored-fileset
`(:or ,eldev-lint-ignored-fileset "./clojure-mode-*"))

0 comments on commit 40ee640

Please sign in to comment.