How do I set file extensions for prettierjs in .prettierrc file?

Viewed 11

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
}
0 Answers
Related