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:
foobarbyte 2021-07-20 09:14:45 +00:00 committed by GitHub
parent 651038b601
commit c1c3873c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.