Skip to content
Snippets Groups Projects
Commit 2e8b72c7 authored by Daniel Laps's avatar Daniel Laps
Browse files

Add checker definition for clolyze

parents
No related branches found
No related tags found
No related merge requests found
README 0 → 100644
;;; flycheck-clolyze.el --- Add clolyze to flycheck
;;; Copyright (C) 2019 Daniel Laps
;;; Commentary:
;; This package adds Clolyze to flycheck. To use it, add
;; to your init.el:
;; (require 'flycheck-clolyze)
(require 'flycheck)
(flycheck-define-checker clolyze
"This checker uses clolyze to check clojure code."
:command ("lein" "clolyze" ":linting")
:error-patterns ((warning line-start (file-name) ":" line ":" column ":" (message) line-end))
:modes clojure-mode)
(add-to-list 'flycheck-checkers 'clolyze)
(provide 'flycheck-clolyze)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment