emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cider 5086084688: Move a couple of settings to .dir-locals


From: ELPA Syncer
Subject: [nongnu] elpa/cider 5086084688: Move a couple of settings to .dir-locals.el
Date: Thu, 21 Sep 2023 12:59:57 -0400 (EDT)

branch: elpa/cider
commit 508608468811ff88bf50d2a0d3fb3c5793423b2b
Author: Bozhidar Batsov <bozhidar@batsov.dev>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Move a couple of settings to .dir-locals.el
---
 .dir-locals.el | 4 ++++
 Eldev          | 3 ---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.dir-locals.el b/.dir-locals.el
index 14b1c7804c..0e1f6055c0 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -8,10 +8,14 @@
   (fill-column . 80)
   (sentence-end-double-space . t)
   (emacs-lisp-docstring-fill-column . 75)
+  ;; slightly increase the maximum (applies to checkdoc and the byte compiler 
alike)
+  (byte-compile-docstring-max-column 100)
   (checkdoc-symbol-words . ("top-level" "major-mode" "macroexpand-all" 
"print-level" "print-length"))
   (checkdoc-package-keywords-flag)
   (checkdoc-arguments-in-order-flag)
   (checkdoc-verb-check-experimental-flag)
+  ;; allow commas to indicate that the first sentence continues, which enables 
longer first sentences
+  (checkdoc-permit-comma-termination-flag t)
   (elisp-lint-indent-specs . ((if-let* . 2)
                               (when-let* . 1)
                               (let* . defun)
diff --git a/Eldev b/Eldev
index 1a1426362d..5dc49631ff 100644
--- a/Eldev
+++ b/Eldev
@@ -33,9 +33,6 @@
     (signal 'eldev-wrong-option-usage `("unknown test type `%s'" ,type)))
   (setf cider-test-type (intern type)))
 
-(setq byte-compile-docstring-max-column 100) ;; slightly increase the maximum 
(applies to checkdoc and the byte compiler alike)
-(setq checkdoc-permit-comma-termination-flag t) ;; allow commas to indicate 
that the first sentence continues, which enables longer first sentences
-
 (add-hook 'eldev-test-hook
           (lambda ()
             (eldev-verbose "Using cider tests of type `%s'" cider-test-type)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]