.prettierrc.json 371 B

1234567891011121314151617
  1. {
  2. "arrowParens": "always",
  3. "bracketSpacing": true,
  4. "endOfLine": "lf",
  5. "htmlWhitespaceSensitivity": "strict",
  6. "jsxBracketSameLine": false,
  7. "jsxSingleQuote": true,
  8. "printWidth": 80,
  9. "proseWrap": "never",
  10. "quoteProps": "as-needed",
  11. "semi": false,
  12. "singleQuote": true,
  13. "tabWidth": 2,
  14. "trailingComma": "es5",
  15. "useTabs": true,
  16. "vueIndentScriptAndStyle": false
  17. }