I have emacs24 (installed by homebrew), flycheck (installed by MELPA) and pylint (installed by pip) on my mac, and I have the following code
(add-hook 'after-init-hook #'global-flycheck-mode)
in my .emacs file. However there's still no syntax checking when I type a python script. From the emacs drop down menu the syntax checking is actually greyed out.
I know flycheck is working because syntax checking is working when I edit my .emacs file, so I think it's a problem with pylint. Any idea what I'm missing here?