This is a small CLI tool that dumps all of Prettier’s default configuration options to a file in the format of your choice.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.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. }