diff options
Diffstat (limited to 'src/gizmo/wasp-flycheck.el')
| -rw-r--r-- | src/gizmo/wasp-flycheck.el | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gizmo/wasp-flycheck.el b/src/gizmo/wasp-flycheck.el new file mode 100644 index 00000000..27a857b4 --- /dev/null +++ b/src/gizmo/wasp-flycheck.el @@ -0,0 +1,17 @@ +;;; wasp-flycheck --- Flycheck -*- lexical-binding: t; -*- +;;; Commentary: +;;; Code: + +(require 'flycheck) + +(flycheck-define-generic-checker 'wasp-twitch + "Checker to display errors from Twitch redeems." + :start + (lambda (c x) + (print c) + (print x)) + :modes '(fundamental-mode) + ) + +(provide 'wasp-flycheck) +;;; wasp-flycheck.el ends here |
