-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Labels
Description
Two questions:
I use jsbeautify from typescript files. In my .vimrc, I have:
autocmd FileType typescript vnoremap <buffer> <c-f> :call RangeJsBeautify()<cr>
How can I setup my .editorconfig for typescript? These rules are ignored for typescript files in my .editorconfig:
[**.ts]
charset = utf-8
indent_style = space
indent_size = 3
insert_final_newline = true
trim_trailing_whitespace = true
Thanks