2020-08-31 15:24:59 +02:00
|
|
|
;;; wpc-flycheck.el --- My flycheck configuration -*- lexical-binding: t -*-
|
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
2020-08-31 15:24:59 +02:00
|
|
|
;; Version: 0.0.1
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
2018-04-25 19:26:53 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Hosts my Flycheck preferences
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(use-package flycheck
|
|
|
|
:config
|
|
|
|
(global-flycheck-mode))
|
|
|
|
|
|
|
|
(provide 'wpc-flycheck)
|
2019-01-13 20:33:17 +01:00
|
|
|
;;; wpc-flycheck.el ends here
|