~brettgilio/org-webring

I added a build tool called Eldev to the project. It's written in
Elisp and for Elisp. I added it for future use with ELPA and CI/CD.
What do you think?

Ivan Sokolov (2):
  Add Eldev
  Fix linter warnings

 .gitignore     | 10 ++++++++++
 Eldev          | 14 ++++++++++++++
 org-webring.el |  2 ++
 3 files changed, 26 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 Eldev

--
2.28.0
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~brettgilio/org-webring/patches/12082/mbox | git am -3
Learn more about email & git

[PATCH 1/2] Add Eldev Export this patch

---
 .gitignore | 10 ++++++++++
 Eldev      | 14 ++++++++++++++
 2 files changed, 24 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 Eldev

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5e56cf9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,10 @@
# Elisp bytecode
*.elc

# Generated files
*-autoloads.el
/dist/

# Added automatically by `eldev init'.
/.eldev
/Eldev-local
diff --git a/Eldev b/Eldev
new file mode 100644
index 0000000..e7e3c29
--- /dev/null
+++ b/Eldev
@@ -0,0 +1,14 @@
; -*- mode: emacs-lisp; lexical-binding: t; no-byte-compile: t -*-

;; Uncomment some calls below as needed for your project.
;(eldev-use-package-archive 'gnu)
(eldev-use-package-archive 'melpa)

(eldev-use-plugin 'autoloads)

;; Cursed
(add-to-list 'eldev-lint-disabled 'elisp)

;; Local Variables:
;; eval: (add-hook 'flycheck-disabled-checkers 'emacs-lisp-checkdoc nil t)
;; End:
-- 
2.28.0

[PATCH 2/2] Fix linter warnings Export this patch

---
 org-webring.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/org-webring.el b/org-webring.el
index ce6069c..b3da341 100644
--- a/org-webring.el
+++ b/org-webring.el
@@ -11,7 +11,9 @@
;; Co-author: Jamie Beardslee <jdb@jamzattack.xyz>
;; Co-author: Amin Bandali <bandali@gnu.org>
;; Co-author: Ivan Sokolov <ivan-p-sokolov@ya.ru>
;; Homepage: https://git.sr.ht/~brettgilio/org-webring
;; Version: 1.3
;; Package-Requires: ((emacs "25.1") (xmlgen "0.5"))

;; Repository: https://git.sr.ht/~brettgilio/org-webring
;; Tracker: https://todo.sr.ht/~brettgilio/org-webring
-- 
2.28.0