about summary refs log tree commit diff
path: root/emacs-elisp/packages/flycheck.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-elisp/packages/flycheck.el')
-rw-r--r--emacs-elisp/packages/flycheck.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs-elisp/packages/flycheck.el b/emacs-elisp/packages/flycheck.el
new file mode 100644
index 0000000..9a66c22
--- /dev/null
+++ b/emacs-elisp/packages/flycheck.el
@@ -0,0 +1,6 @@
+;; Flycheck shows syntax errors for many languages
+;;; https://github.com/flycheck/flycheck
+(use-package flycheck)
+(add-hook 'prog-mode-hook 'flycheck-mode)
+(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
+(setq flycheck-indication-mode nil)