summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorOliver Albertini <oliverralbertini@users.noreply.github.com>2021-09-15 05:07:45 -0700
committerGitHub <noreply@github.com>2021-09-15 21:07:45 +0900
commitf769f64c079d2f3216559234fb92673182089267 (patch)
treec2266520dd129a489b1178c87b6cb34066f8d3d6 /autoload
parent19437e25d05950ab83dce285b4b8ec5166e06dba (diff)
downloadale-f769f64c079d2f3216559234fb92673182089267.zip
[ale-python-root] add `.pyre_configuration.local` to list of files (#3900)
Without this, we have one `pyre` process running across different pyre projects. With this change, files in different projects can be linted with pyre at the same time. Co-authored-by: Oliver Ruben Albertini <ora@fb.com>
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/python.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim
index ee856a27..81cb06e0 100644
--- a/autoload/ale/python.vim
+++ b/autoload/ale/python.vim
@@ -24,6 +24,7 @@ function! ale#python#FindProjectRootIni(buffer) abort
\|| filereadable(l:path . '/setup.cfg')
\|| filereadable(l:path . '/pytest.ini')
\|| filereadable(l:path . '/tox.ini')
+ \|| filereadable(l:path . '/.pyre_configuration.local')
\|| filereadable(l:path . '/mypy.ini')
\|| filereadable(l:path . '/pycodestyle.cfg')
\|| filereadable(l:path . '/.flake8')