summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorblyoa <yblue110+blyoa@gmail.com>2018-02-01 01:29:01 +0900
committerblyoa <yblue110+blyoa@gmail.com>2018-02-01 02:30:02 +0900
commit23db293bdfda820dcff2464d2c4e533f52eb86be (patch)
treee3cad6b7aac431ce362d1116a34c1244c123829f /autoload
parent52fe924a139b8ae3d087cba0d9a5199054ae0595 (diff)
downloadale-23db293bdfda820dcff2464d2c4e533f52eb86be.zip
Add prettier fixer support to vue
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 e4568847..29e263a9 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -45,7 +45,7 @@ let s:default_registry = {
\ },
\ 'prettier': {
\ 'function': 'ale#fixers#prettier#Fix',
-\ 'suggested_filetypes': ['javascript', 'typescript', 'json', 'css', 'scss', 'less', 'markdown', 'graphql'],
+\ 'suggested_filetypes': ['javascript', 'typescript', 'json', 'css', 'scss', 'less', 'markdown', 'graphql', 'vue'],
\ 'description': 'Apply prettier to a file.',
\ },
\ 'prettier_eslint': {