blob: 27a857b4413c4dae376f1c967ced9835c69ecb32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|