mirror of https://github.com/dense-analysis/ale
Correct typo in python config filenames (#3826)
* Correct typo in a config file filename. .tool_versions should be .tool-versions * Correct typo in config file names. .tool_versions should be .tool-versions
This commit is contained in:
parent
651038b601
commit
c1c3873c89
|
@ -34,7 +34,7 @@ function! ale#python#FindProjectRootIni(buffer) abort
|
|||
\|| filereadable(l:path . '/Pipfile.lock')
|
||||
\|| filereadable(l:path . '/poetry.lock')
|
||||
\|| filereadable(l:path . '/pyproject.toml')
|
||||
\|| filereadable(l:path . '/.tool_versions')
|
||||
\|| filereadable(l:path . '/.tool-versions')
|
||||
return l:path
|
||||
endif
|
||||
endfor
|
||||
|
|
|
@ -38,7 +38,7 @@ ALE will look for configuration files with the following filenames. >
|
|||
Pipfile.lock
|
||||
poetry.lock
|
||||
pyproject.toml
|
||||
.tool_versions
|
||||
.tool-versions
|
||||
<
|
||||
|
||||
The first directory containing any of the files named above will be used.
|
||||
|
|
Loading…
Reference in New Issue