blob: 505ad8a3c5e565ac2c6ef5b15626fdc48ea75ee7 (
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
|