python: add lookup path for flake8 config

This commit is contained in:
Travis Cline
2018-08-01 20:07:11 -07:00
parent 3aa5e0f9dc
commit 2ac9e454d6
2 changed files with 2 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ function! ale#python#FindProjectRootIni(buffer) abort
\|| filereadable(l:path . '/mypy.ini')
\|| filereadable(l:path . '/pycodestyle.cfg')
\|| filereadable(l:path . '/flake8.cfg')
\|| filereadable(l:path . '/.flake8rc')
\|| filereadable(l:path . '/Pipfile')
\|| filereadable(l:path . '/Pipfile.lock')
return l:path

View File

@@ -22,6 +22,7 @@ ALE will look for configuration files with the following filenames. >
mypy.ini
pycodestyle.cfg
flake8.cfg
.flake8rc
Pipfile
Pipfile.lock
<