.prettierrc 390 B

123456789101112131415161718
  1. {
  2. "trailingComma": "es5",
  3. "singleQuote": false,
  4. "semi": true,
  5. "printWidth": 100,
  6. "arrowParens": "avoid",
  7. "importOrder": [
  8. "^(react/(.*)$)|^(react$)",
  9. "^(next/(.*)$)|^(next$)",
  10. "styled",
  11. "<THIRD_PARTY_MODULES>",
  12. "^src/(.*)$",
  13. "^utils/(.*)$",
  14. "^assets/(.*)$",
  15. "^[./]"
  16. ],
  17. "importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"]
  18. }