diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-01-15 22:26:56 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 22:26:56 +0900 |
commit | bbac230008f8007f2c6e444f66bc49afc0d2c12a (patch) | |
tree | faa31dc44a8deef36ff1af74d0de34ab4ceeb8ad /autoload | |
parent | 6fbdec8587ad918dccf13546418904d3f2c38a46 (diff) | |
parent | ddf4e7e9bab24423ef4388bd923a532d8fb3227f (diff) | |
download | ale-bbac230008f8007f2c6e444f66bc49afc0d2c12a.zip |
Merge pull request #3234 from hsanson/3233-enable-ktlint-fixer-for-kotlin-files
Enable ktlint fixer for kotlin files.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix/registry.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim index 47f978e8..f28e84fd 100644 --- a/autoload/ale/fix/registry.vim +++ b/autoload/ale/fix/registry.vim @@ -342,7 +342,7 @@ let s:default_registry = { \ }, \ 'ktlint': { \ 'function': 'ale#fixers#ktlint#Fix', -\ 'suggested_filetypes': ['kt'], +\ 'suggested_filetypes': ['kt', 'kotlin'], \ 'description': 'Fix Kotlin files with ktlint.', \ }, \ 'styler': { |