tvl-depot/users/wpcarro/emacs/.emacs.d/wpc/wpc-flycheck.el

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
354 B
EmacsLisp
Raw Normal View History

;;; wpc-flycheck.el --- My flycheck configuration -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;; Version: 0.0.1
;; Package-Requires: ((emacs "24"))
;;; Commentary:
;; Hosts my Flycheck preferences
;;; Code:
(use-package flycheck
:config
(global-flycheck-mode))
(provide 'wpc-flycheck)
;;; wpc-flycheck.el ends here