summaryrefslogtreecommitdiff
path: root/src/gizmo/wasp-flycheck.el
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-11-26 03:23:31 -0500
committerLLLL Colonq <llll@colonq>2024-11-26 03:23:31 -0500
commit0b95071fe628d91238549b062961e724088d3b8b (patch)
treeb4cf3ae960e0b52ed014ab4ba423fda1075e5d60 /src/gizmo/wasp-flycheck.el
parent6e3c47b1ad746f0891592a97cc6ffb6e0280adbb (diff)
Update :4
Diffstat (limited to 'src/gizmo/wasp-flycheck.el')
-rw-r--r--src/gizmo/wasp-flycheck.el17
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