I'm starting to using VSC and looking for a good formatter for js, jsx, css, html.. etc
Tried several auto-indent extensions for VSC and for now settled with the Prettier, so I have few questions:
How to disable spacing:
- on arrow functions to
const a=()=>{};
insteadconst a = () => {};
- on
} else {
to clear one:}else{
- on
if ()
,for ()
- in function arguments (not important)
...I really hate this useless spacing
plus:
- How to refresh file in VSC? (exit without saving + open again - with one button (is it 'revert file', probably..))
- How to disable (or setup) amount empty lines between blocks onFormatPrettier (1 by default)
- (for devs) Why are there so few settings(for me :) ) in the extension?
Thanks