summary refs log tree commit diff
path: root/emacs.d/modules/module-flycheck.el
blob: 3e2116c92737ca830df08ab305702dd5a7f7b840 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(require 'config-package)

(use-package flycheck
  :config
  (progn
    (add-hook 'prog-mode-hook 'flycheck-mode)
    (setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
    (setq flycheck-highlighting-mode 'lines)
    (setq flycheck-check-syntax-automatically '(mode-enabled save))))

(provide 'module-flycheck)