.prettierrc 383 B

1234567891011121314151617
  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. "<THIRD_PARTY_MODULES>",
  11. "^components/(.*)$",
  12. "^utils/(.*)$",
  13. "^assets/(.*)$",
  14. "^[./]"
  15. ],
  16. "importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"]
  17. }