summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2021-01-15 22:26:56 +0900
committerGitHub <noreply@github.com>2021-01-15 22:26:56 +0900
commitbbac230008f8007f2c6e444f66bc49afc0d2c12a (patch)
treefaa31dc44a8deef36ff1af74d0de34ab4ceeb8ad /autoload
parent6fbdec8587ad918dccf13546418904d3f2c38a46 (diff)
parentddf4e7e9bab24423ef4388bd923a532d8fb3227f (diff)
downloadale-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.vim2
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': {