This is a small CLI tool that dumps all of Prettier’s default configuration options to a file in the format of your choice.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.prettierrc 473B

123456789101112131415161718192021
  1. {
  2. "arrowParens": "avoid",
  3. "bracketSpacing": true,
  4. "endOfLine": "auto",
  5. "filepath": "",
  6. "htmlWhitespaceSensitivity": "css",
  7. "insertPragma": false,
  8. "jsxBracketSameLine": false,
  9. "jsxSingleQuote": false,
  10. "parser": "",
  11. "printWidth": 80,
  12. "proseWrap": "preserve",
  13. "quoteProps": "as-needed",
  14. "requirePragma": false,
  15. "semi": true,
  16. "singleQuote": true,
  17. "tabWidth": 2,
  18. "trailingComma": "es5",
  19. "useTabs": false,
  20. "vueIndentScriptAndStyle": false
  21. }