diff options
author | foobarbyte <61650320+foobarbyte@users.noreply.github.com> | 2021-07-20 09:14:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 18:14:45 +0900 |
commit | c1c3873c89503118b1ce34e71e2fa47ebe6631e5 (patch) | |
tree | feebea71d35e63968a6abc6d7d25f3ace394daf5 | |
parent | 651038b6017c2d2bd7027076ff2838e7cc4a078e (diff) | |
download | ale-c1c3873c89503118b1ce34e71e2fa47ebe6631e5.zip |
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
-rw-r--r-- | autoload/ale/python.vim | 2 | ||||
-rw-r--r-- | doc/ale-python.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim index 779844a2..40433d17 100644 --- a/autoload/ale/python.vim +++ b/autoload/ale/python.vim @@ -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 diff --git a/doc/ale-python.txt b/doc/ale-python.txt index 21dee657..7d390d54 100644 --- a/doc/ale-python.txt +++ b/doc/ale-python.txt @@ -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. |