Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 595 Bytes

flycheck.org

File metadata and controls

23 lines (18 loc) · 595 Bytes

flycheck: Get the computer proof reading

flycheck

flycheck is a modern drop in replacement for emacs flymake. It’s faster, more memory efficient, supports more languages, and has a great project culture.

I say that this is doing proof reading because you can use linters to provide style warnings, as well as whether your code will compile or not.

Web: http://www.flycheck.org/en/latest/ Git: https://github.com/flycheck/flycheck

(use-package flycheck :ensure t
  :defer t
  :init
  (global-flycheck-mode)
  )