add eslintrc.yml support

This commit is contained in:
xy 2017-05-17 01:34:29 +08:00
parent c449c413a9
commit ee87885f40

View File

@ -172,7 +172,16 @@ if !exists('g:formatdef_eslint_local')
endif
" find formatter & config file
let l:prog = findfile('node_modules/.bin/eslint', l:path.";")
let l:cfg = findfile('.eslintrc.json', l:path.";")
let l:cfg = findfile('.eslintrc.js', l:path.";")
if empty(l:cfg)
let l:cfg = findfile('.eslintrc.yaml', l:path.";")
endif
if empty(l:cfg)
let l:cfg = findfile('.eslintrc.yml', l:path.";")
endif
if empty(l:cfg)
let l:cfg = findfile('.eslintrc.json', l:path.";")
endif
if empty(l:cfg)
let l:cfg = findfile('.eslintrc', l:path.";")
endif