I currently have this command: prettier --write \"**/*.{js,ts,vue,scss,html,md,json,css}\" --ignore-path .gitignore
I would like to move these arguments into the .prettierrc file instead of using command line arguments.
How do I do this?
Here is my prettierrc file:
{
"singleQuote": true,
"semi": true
}