summaryrefslogtreecommitdiffstats
path: root/lisp/init-flycheck.el
blob: 2e401dde5bb690f866b4bab749055f3607f9b753 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(use-package flycheck
  :init
  ;; disable noisy checkers
  (setq-default flycheck-disabled-checkers
                '(emacs-lisp emacs-lisp-checkdoc go-golint))

  :config
  (global-flycheck-mode 1))

(provide 'init-flycheck)