Merge pull request #2502 from ericvw/flake8-config

Change Python project root dir detection for flake8 configuration
This commit is contained in:
w0rp
2019-05-21 00:15:12 +01:00
committed by GitHub
5 changed files with 13 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ function! ale#python#FindProjectRootIni(buffer) abort
\|| filereadable(l:path . '/tox.ini')
\|| filereadable(l:path . '/mypy.ini')
\|| filereadable(l:path . '/pycodestyle.cfg')
\|| filereadable(l:path . '/flake8.cfg')
\|| filereadable(l:path . '/.flake8')
\|| filereadable(l:path . '/.flake8rc')
\|| filereadable(l:path . '/pylama.ini')
\|| filereadable(l:path . '/pylintrc')