diff options
author | ecly <ecly@mailbox.org> | 2020-10-15 13:35:47 +0200 |
---|---|---|
committer | ecly <ecly@mailbox.org> | 2020-10-15 13:35:47 +0200 |
commit | f125c11faa778f30fcd775b4104a2271dccf6b6c (patch) | |
tree | 3a21c0fdbbba8a6f2fedfdff4b50806cf8f814df /autoload | |
parent | b91c6c2edd20794ad5637b561ed4c678647a76e5 (diff) | |
download | ale-f125c11faa778f30fcd775b4104a2271dccf6b6c.zip |
Update FindProjectRootIni with poetry.lock and pyproject.toml
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/python.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim index 7ed22367..fc6c1130 100644 --- a/autoload/ale/python.vim +++ b/autoload/ale/python.vim @@ -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 |