Skip to content

Commit

Permalink
Don't check for argument order in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
cpitclaudel committed Feb 17, 2018
1 parent 6e45989 commit 1100f1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion maint/flycheck-checkdoc.el
Expand Up @@ -74,7 +74,8 @@ location and error message."
;; Switch to Emacs Lisp mode to give checkdoc the proper syntax table, etc.
(delay-mode-hooks (emacs-lisp-mode))
(setq delay-mode-hooks nil)
(checkdoc-current-buffer 'take-notes)
(let ((checkdoc-arguments-in-order-flag nil))
(checkdoc-current-buffer 'take-notes))
(flycheck/checkdoc-get-current-errors)))

(defun flycheck/batch-checkdoc ()
Expand Down

0 comments on commit 1100f1d

Please sign in to comment.