Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix package-lint warnings #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Cask
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@

(package "flycheck-elsa" "1.0.0" "Flycheck for Elsa.")

(depends-on "cask" "0.8.4")
(depends-on "seq" "2.0")
(depends-on "emacs" "25")
(package-file "flycheck-elsa.el")

(development
(depends-on "trinary" "0.0.1")
Expand Down
6 changes: 2 additions & 4 deletions flycheck-elsa.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
;; Maintainer: Matúš Goljer <[email protected]>
;; Version: 1.0.0
;; Created: 23rd August 2018
;; Package-requires: ((emacs "25") (seq "2.0") (cask "0.8.4"))
;; Package-requires: ((emacs "25.1") (seq "2.0") (cask "0.8.4"))
;; Keywords: convenience
;; Homepage: https://github.com/emacs-elsa/flycheck-elsa

Expand Down Expand Up @@ -39,9 +39,7 @@
:group 'flycheck
:link '(url-link :tag "Github" "https://github.com/emacs-elsa/flycheck-elsa"))

(defcustom flycheck-elsa-ignored-files-regexps '(
"\\`Cask\\'"
)
(defcustom flycheck-elsa-ignored-files-regexps '("\\`Cask\\'")
"List of regular expressions matching files which should be ignored by Elsa."
:group 'flycheck-elsa
:type '(repeat regexp))
Expand Down