https://github.com/yasuyk/flymake-yaml.git
git clone 'git://github.com/yasuyk/flymake-yaml.git'
An Emacs flymake handler for syntax-checking YAML source code
using Psych
or Syck
(Ruby 1.8/1.9 standard library).
Based in part on http://d.hatena.ne.jp/kitokitoki/20120306/p1.
These days you might be better served by flycheck.
If you choose not to use one of the convenient packages in
Melpa and Marmalade, you'll need to add the
directory containing flymake-yaml.el
to your load-path
, and then
(require 'flymake-yaml)
. You'll also need to install
flymake-easy.
Add the following to your emacs init file:
(require 'flymake-yaml) ;; Not necessary if using ELPA package
(add-hook 'yaml-mode-hook 'flymake-yaml-load)