I want to activate checking for scons files in vim + syntastic.
My .vimrc includes:
au BufNewFile,BufRead SCons* set filetype=scons
let g:syntastic_scons_checkers = ['flake8']
Opening a scons file and :SyntasticInfo
Syntastic version: 3.6.0-86 (Vim 704, Linux)
Info for filetype: scons
Global mode: active
Filetype scons is active
The current file will be checked automatically
Available checkers: -
Currently enabled checkers: -
The checker is not listet here. How could I activate it?
remark: flake8 works fine for python files.