.prettierrc.json 374 B

1234567891011121314151617
  1. {
  2. "singleQuote": true,
  3. "semi": false,
  4. "tabWidth": 2,
  5. "useTabs": false,
  6. "printWidth": 1200,
  7. "endOfLine": "auto",
  8. "trailingComma": "none",
  9. "bracketSpacing": true,
  10. "jsxBracketSameLine": true,
  11. "arrowParens": "avoid",
  12. "eslintIntegration": true,
  13. "htmlWhitespaceSensitivity": "ignore",
  14. "editor.codeActionsOnSave": {
  15. "source.fixAll.eslint": true
  16. }
  17. }