Merge pull request #229 from mqudsi/eslint_fix
Fix eslint configuration file search
This commit is contained in:
commit
92ad3b6593
@ -189,42 +189,38 @@ if !exists('g:formatdef_eslint_local')
|
|||||||
if empty(l:prog)
|
if empty(l:prog)
|
||||||
let l:prog = findfile('~/.npm-global/bin/eslint')
|
let l:prog = findfile('~/.npm-global/bin/eslint')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
"initial
|
"initial
|
||||||
let l:cfg = fnamemodify(findfile('.eslintrc.js', l:path.";"),':p')
|
let l:cfg = findfile('.eslintrc.js', l:path.";")
|
||||||
|
|
||||||
let l:tcfg = fnamemodify(findfile('.eslintrc.yaml', l:path.";"),':p')
|
if empty(l:cfg)
|
||||||
if len(l:tcfg) > len(l:cfg)
|
let l:cfg_fallbacks = [
|
||||||
let l:cfg = l:tcfg
|
\'.eslintrc.yaml',
|
||||||
endif
|
\'.eslintrc.yml',
|
||||||
let l:tcfg = fnamemodify(findfile('.eslintrc.yml', l:path.";"),':p')
|
\'.eslintrc.json',
|
||||||
if len(l:tcfg) > len(l:cfg)
|
\'.eslintrc',
|
||||||
let l:cfg = l:tcfg
|
\]
|
||||||
endif
|
|
||||||
let l:tcfg = fnamemodify(findfile('.eslintrc.json', l:path.";"),':p')
|
for i in l:cfg_fallbacks
|
||||||
if len(l:tcfg) > len(l:cfg)
|
let l:tcfg = findfile(i, l:path.";")
|
||||||
let l:cfg = l:tcfg
|
if !empty(l:tcfg)
|
||||||
endif
|
break
|
||||||
let l:tcfg = fnamemodify(findfile('.eslintrc', l:path.";"),':p')
|
endif
|
||||||
if len(l:tcfg) > len(l:cfg)
|
endfor
|
||||||
let l:cfg = l:tcfg
|
|
||||||
|
if !empty(l:tcfg)
|
||||||
|
let l:cfg = fnamemodify(l:tcfg, ":p")
|
||||||
|
else
|
||||||
|
let l:cfg = findfile('~/.eslintrc.js')
|
||||||
|
for i in l:cfg_fallbacks
|
||||||
|
if !empty(l:cfg)
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
let l:cfg = findfile("~/".i)
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" This is in case we are outside home folder
|
|
||||||
if empty(l:cfg)
|
|
||||||
let l:cfg = findfile('~/.eslintrc.js')
|
|
||||||
endif
|
|
||||||
if empty(l:cfg)
|
|
||||||
let l:cfg = findfile('~/.eslintrc.yaml')
|
|
||||||
endif
|
|
||||||
if empty(l:cfg)
|
|
||||||
let l:cfg = findfile('~/.eslintrc.yml')
|
|
||||||
endif
|
|
||||||
if empty(l:cfg)
|
|
||||||
let l:cfg = findfile('~/.eslintrc.json')
|
|
||||||
endif
|
|
||||||
if empty(l:cfg)
|
|
||||||
let l:cfg = findfile('~/.eslintrc')
|
|
||||||
endif
|
|
||||||
if (empty(l:cfg) || empty(l:prog))
|
if (empty(l:cfg) || empty(l:prog))
|
||||||
if verbose
|
if verbose
|
||||||
return "(>&2 echo 'No local or global ESLint program and/or config found')"
|
return "(>&2 echo 'No local or global ESLint program and/or config found')"
|
||||||
|
Loading…
Reference in New Issue
Block a user