Flycheck support for the purescript language
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-purescript-setup))
Also, somewhere you will need to set the default-directory
to be the project root.
Something equivalent to the following:
(add-hook 'purescript-mode-hook
(lambda ()
(setq default-directory
(locate-dominating-file default-directory "bower.json"))))
Determines the general class of errors to show. Can be `all` (default), `errors-only`, or `warn-after-errrors`.
The last will show warnings only when no errors have been detected.
List of specific error codes to ignore by flycheck.
List of compiler options to send to psc. Default is to turn off all opmizations.
List of globs to send the compiler.