diff options
author | blyoa <yblue110+blyoa@gmail.com> | 2018-02-01 01:29:01 +0900 |
---|---|---|
committer | blyoa <yblue110+blyoa@gmail.com> | 2018-02-01 02:30:02 +0900 |
commit | 23db293bdfda820dcff2464d2c4e533f52eb86be (patch) | |
tree | e3cad6b7aac431ce362d1116a34c1244c123829f /autoload | |
parent | 52fe924a139b8ae3d087cba0d9a5199054ae0595 (diff) | |
download | ale-23db293bdfda820dcff2464d2c4e533f52eb86be.zip |
Add prettier fixer support to vue
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 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': { |