summary refs log tree commit diff
path: root/emacs/custom/fcuny-flycheck.el
blob: 6f8ff657dc2377aa4b2c49109b1470bc626e0c46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(eval-when-compile
  (require 'use-package))

(use-package flycheck
  :ensure t
  :hook (prog-mode . flycheck-mode )
  :custom
  (flycheck-idle-change-delay 2)
  (flycheck-emacs-lisp-load-path 'inherit)
  (flycheck-highlighting-mode 'lines)
  (flycheck-check-syntax-automatically '(mode-enabled save))
  (flycheck-disabled-checkers '(emacs-lisp-checkdoc)))

(provide 'fcuny-flycheck)