diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-05-21 00:15:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-21 00:15:12 +0100 |
commit | 89db85121c001fc60787647f012978a2328816a5 (patch) | |
tree | 7a0fccc359896108d3a2e9e2f6c05889689dbdd9 /autoload | |
parent | 26e5948617e4aad8612bfb0ac958a5f483898716 (diff) | |
parent | 57736cdcccf46e0d6252b556e9a2b2a56a634754 (diff) | |
download | ale-89db85121c001fc60787647f012978a2328816a5.zip |
Merge pull request #2502 from ericvw/flake8-config
Change Python project root dir detection for flake8 configuration
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/python.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim index 2f28214b..7ed22367 100644 --- a/autoload/ale/python.vim +++ b/autoload/ale/python.vim @@ -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') |