diff options
author | jhlink <jhlink@users.noreply.github.com> | 2020-07-29 01:52:36 -0400 |
---|---|---|
committer | jhlink <jhlink@users.noreply.github.com> | 2020-07-29 01:52:36 -0400 |
commit | cef64424ceaede7093bb2837d572b8c5fc0de121 (patch) | |
tree | 0b09a7682a7f5b9465bb89295b247eb3762ccc5f /autoload | |
parent | 428c5f94dab423d4d1af0ef46d51999d2142e1eb (diff) | |
download | ale-cef64424ceaede7093bb2837d572b8c5fc0de121.zip |
style: Resolve lint issue
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/astyle.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/astyle.vim b/autoload/ale/fixers/astyle.vim index 0abceb10..04e4b69a 100644 --- a/autoload/ale/fixers/astyle.vim +++ b/autoload/ale/fixers/astyle.vim @@ -25,7 +25,7 @@ function! ale#fixers#astyle#FindProjectOptions(buffer) abort " If user has set project options variable then use it and skip any searching. " This would allow users to use project files named differently than .astylerc. if !empty(l:proj_options) - return l:proj_options + return l:proj_options endif " Try to find nearest .astylerc file. |