summaryrefslogtreecommitdiff
path: root/autoload/ale/fix/registry.vim
diff options
context:
space:
mode:
authorDavid Buchan-Swanson <david.buchanswanson@gmail.com>2021-02-18 18:33:02 +1100
committerGitHub <noreply@github.com>2021-02-18 16:33:02 +0900
commit1ee7f6c97bb73bb6e12f00e527b664c5ea0df167 (patch)
tree69e70e0a329998492faece429cedee933d31f5a1 /autoload/ale/fix/registry.vim
parent0b35c3a5b9d5f9d3bb1021d89c1bdb9dbbf8a958 (diff)
downloadale-1ee7f6c97bb73bb6e12f00e527b664c5ea0df167.zip
add support for prettier-ruby to prettier fixer (#3593)
it _does_ need an additional plugin, but when it has the plugin, it works as expected.
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 23441ca5..8279fdb4 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -107,7 +107,7 @@ let s:default_registry = {
\ },
\ 'prettier': {
\ 'function': 'ale#fixers#prettier#Fix',
-\ 'suggested_filetypes': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'json5', 'graphql', 'markdown', 'vue', 'html', 'yaml', 'openapi'],
+\ 'suggested_filetypes': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'json5', 'graphql', 'markdown', 'vue', 'html', 'yaml', 'openapi', 'ruby'],
\ 'description': 'Apply prettier to a file.',
\ },
\ 'prettier_eslint': {