How does your Prettier config with Angular 19 look like?
angular - Problems with Prettier config in vscode - Stack Overflow
Using Prettier to format Angular templates
Prettier Config
Videos
How does your current prettier config for Angular 19 look like? What are you most important plugins for you? Lets gather some configs and maybe explain it a little bit.
I start with my most important plugin for prettier:
prettier-plugin-organize-attributes
There is nothing more annoying than unorganized attributes.
Maybe you have to set "trailing-comma": true in tslint.json. Anyway good practice is to install https://github.com/prettier/tslint-config-prettier so you don't get conflicts.
Is your default formatter set to prettier? Or the default Typescript and Javascript language features?
You can check this by opening a typescript file and pressing ctrl + shift + p (for windows)
and looking for format document with and looking which is the default.
Is Prettier recomended (widely used) for html templates formatting? If not, what's the recommended formatter?