summaryrefslogtreecommitdiff
path: root/autoload/ale/fix/registry.vim
diff options
context:
space:
mode:
authorLyz <lyz@riseup.net>2020-11-26 12:42:50 +0100
committerLyz <lyz@riseup.net>2020-11-26 12:42:50 +0100
commit12eb8d15234e6f4e77672c29659c29a7c0dcf2fb (patch)
treea8de9ed73e87ad1b0ea0f997c7701ee237f9a259 /autoload/ale/fix/registry.vim
parentc69d696e1b63c7797e8696f923856d131f02f5e9 (diff)
downloadale-12eb8d15234e6f4e77672c29659c29a7c0dcf2fb.zip
fix: correct suggested filetype for yamlfix
Diffstat (limited to 'autoload/ale/fix/registry.vim')
-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 e7c8a6b5..0f146faa 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -112,7 +112,7 @@ let s:default_registry = {
\ },
\ 'yamlfix': {
\ 'function': 'ale#fixers#yamlfix#Fix',
-\ 'suggested_filetypes': ['python'],
+\ 'suggested_filetypes': ['yaml'],
\ 'description': 'Fix yaml files with yamlfix.',
\ },
\ 'yapf': {