-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Flycheck and Flymake for error reporting (#109)
* feat: define a flycheck checker * feat: add flymake support * feat: only report message if other backends aren't running * chore: update DS_Store * chore: add documentation on error reporting with flycheck and flymake
- Loading branch information
1 parent
3abb484
commit 34836e3
Showing
5 changed files
with
156 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
elpa-emacs | ||
.cask/* | ||
.node_modules/ | ||
.node_modules/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
;;; parinfer-rust-flycheck.el --- Flycheck integration for parinfer-rust-mode -*- lexical-binding: t; -*- | ||
|
||
;; Copyright (C) 2024 Justin Barclay | ||
|
||
;; Author: Justin Barclay <[email protected]> | ||
|
||
;; This program is free software: you can redistribute it and/or modify | ||
;; it under the terms of the GNU General Public License as published by | ||
;; the Free Software Foundation, either version 3 of the License, or | ||
;; (at your option) any later version. | ||
|
||
;; This program is distributed in the hope that it will be useful, | ||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
;; GNU General Public License for more details. | ||
|
||
;; You should have received a copy of the GNU General Public License | ||
;; along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
;; This file is not part of GNU Emacs. | ||
|
||
;;; Commentary: | ||
;; An assortment of helper functions and ports of functions from Emacs | ||
|
||
;;; Code: | ||
(eval-when-compile | ||
(declare-function flycheck-error-new-at "flycheck") | ||
(declare-function flycheck-define-generic-checker "flycheck") | ||
(defvar parinfer-rust--error nil)) | ||
|
||
(require 'flycheck nil t) | ||
|
||
(defun parinfer-rust--flycheck-start (checker callback) | ||
(funcall callback 'finished | ||
(when-let ((error parinfer-rust--error)) | ||
(list | ||
(flycheck-error-new-at | ||
(+ 1 (plist-get error :line_no)) | ||
(+ 1 (plist-get error :x)) | ||
'error | ||
(plist-get error :message) | ||
:id (plist-get error :name) | ||
:checker checker))))) | ||
|
||
(flycheck-define-generic-checker 'parinfer-rust | ||
"A checker for parinfer-rust." | ||
:start 'parinfer-rust--flycheck-start | ||
:verify (lambda (&rest args) | ||
(list (flycheck-verification-result-new | ||
:label "parinfer-rust-mode" | ||
:message (if parinfer-rust-mode | ||
"enabled" | ||
"not enabled")))) | ||
:modes '(clojure-mode | ||
clojurec-mode | ||
clojurescript-mode | ||
clojure-ts-mode | ||
clojure-ts-clojurescript-mode | ||
janet-mode | ||
common-lisp-mode | ||
lisp-mode | ||
racket-mode | ||
scheme-mode | ||
lisp-interaction-mode | ||
emacs-lisp-mode)) | ||
|
||
(flycheck-add-next-checker 'emacs-lisp 'parinfer-rust t) | ||
|
||
(add-to-list 'flycheck-checkers 'parinfer-rust t) | ||
|
||
(provide 'parinfer-rust-flycheck) | ||
;;; parinfer-rust-flycheck.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
;;; parinfer-rust-flymake.el --- Flymake integration for parinfer-rust-mode -*- lexical-binding: t; -*- | ||
|
||
;; Copyright (C) 2024 Justin Barclay | ||
|
||
;; Author: Justin Barclay <[email protected]> | ||
|
||
;; This program is free software: you can redistribute it and/or modify | ||
;; it under the terms of the GNU General Public License as published by | ||
;; the Free Software Foundation, either version 3 of the License, or | ||
;; (at your option) any later version. | ||
|
||
;; This program is distributed in the hope that it will be useful, | ||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
;; GNU General Public License for more details. | ||
|
||
;; You should have received a copy of the GNU General Public License | ||
;; along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
;; This file is not part of GNU Emacs. | ||
|
||
;;; Commentary: | ||
;; | ||
|
||
;;; Code: | ||
|
||
(require 'flymake) | ||
|
||
(eval-when-compile | ||
(defvar parinfer-rust--error nil)) | ||
|
||
(defun parinfer-rust-flymake (report-fn &rest _args) | ||
(funcall report-fn | ||
(when-let ((error parinfer-rust--error)) | ||
(list | ||
(let ((loc (flymake-diag-region | ||
(current-buffer) | ||
(+ 1 (plist-get error :line_no)) | ||
(+ 1 (plist-get error :x))))) | ||
(flymake-make-diagnostic | ||
(current-buffer) | ||
(car loc) | ||
(cdr loc) | ||
:error | ||
(plist-get error :message))))))) | ||
|
||
(defun parinfer-rust-setup-flymake () | ||
(add-hook 'flymake-diagnostic-functions 'parinfer-rust-flymake nil t)) | ||
|
||
(add-hook 'parinfer-rust-mode-hook 'parinfer-rust-setup-flymake) | ||
|
||
(provide 'parinfer-rust-flymake) | ||
;;; parinfer-rust-flymake.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters