diff options
author | Zack Kourouma <zack@secondspectrum.com> | 2017-10-20 18:29:57 -0700 |
---|---|---|
committer | Zack Kourouma <zack@secondspectrum.com> | 2017-10-20 18:29:57 -0700 |
commit | e023e7a2fe698cb36921c8e47f48e6a072c1b0a6 (patch) | |
tree | dc44022da6e097958ac7b6f9e1fd6adbc2f33349 /autoload | |
parent | 346c91fb6bd455cf0c4dfbf1abe016d6032d59f5 (diff) | |
download | ale-e023e7a2fe698cb36921c8e47f48e6a072c1b0a6.zip |
add prettier fixer support for 'less' filetype
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix/registry.vim | 2 | ||||
-rw-r--r-- | autoload/ale/fixers/prettier.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim index 93ddf0f5..d26c71ab 100644 --- a/autoload/ale/fix/registry.vim +++ b/autoload/ale/fix/registry.vim @@ -39,7 +39,7 @@ let s:default_registry = { \ }, \ 'prettier': { \ 'function': 'ale#fixers#prettier#Fix', -\ 'suggested_filetypes': ['javascript', 'typescript', 'json', 'css', 'scss'], +\ 'suggested_filetypes': ['javascript', 'typescript', 'json', 'css', 'scss', 'less'], \ 'description': 'Apply prettier to a file.', \ }, \ 'prettier_eslint': { diff --git a/autoload/ale/fixers/prettier.vim b/autoload/ale/fixers/prettier.vim index 4adc3b08..d66e00f0 100644 --- a/autoload/ale/fixers/prettier.vim +++ b/autoload/ale/fixers/prettier.vim @@ -49,7 +49,7 @@ function! ale#fixers#prettier#Fix(buffer) abort if match(l:options, '--parser') == -1 if l:filetype is# 'typescript' let l:parser = 'typescript' - elseif l:filetype =~# 'css\|scss' + elseif l:filetype =~# 'css\|scss\|less' let l:parser = 'postcss' elseif l:filetype is# 'json' let l:parser = 'json' |