It would be great if there was a way to specify yamllint -c ${HOME}/.yamllint configuration file location. The way yamllint works is that it expects to find .yamllint file in current directory, otherwise it just uses default configuration, unless -c /path/to/yamllint is specified.
Try this:
let g:syntastic_yaml_yamllint_args = '-c ' . shellescape($HOME . '/.yamllint')
@lcd047 awesome! Thanks.
Most helpful comment
Try this: