Merge pull request #3398 from ecly/update-python-find-root

Update `ale#python#FindProjectRootIni` with poetry.lock and pyproject.toml
This commit is contained in:
Horacio Sanson
2021-01-13 22:07:02 +09:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -32,6 +32,8 @@ function! ale#python#FindProjectRootIni(buffer) abort
\|| filereadable(l:path . '/.pylintrc')
\|| filereadable(l:path . '/Pipfile')
\|| filereadable(l:path . '/Pipfile.lock')
\|| filereadable(l:path . '/poetry.lock')
\|| filereadable(l:path . '/pyproject.toml')
return l:path
endif
endfor