jsoncrack.com/.prettierrc

18 lines
383 B
Plaintext
Raw Normal View History

2022-08-27 18:34:18 +03:00
{
"trailingComma": "es5",
"singleQuote": false,
"semi": true,
2022-12-18 13:59:25 +03:00
"printWidth": 100,
2022-09-12 21:53:31 +03:00
"arrowParens": "avoid",
"importOrder": [
"^(react/(.*)$)|^(react$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"^components/(.*)$",
"^utils/(.*)$",
"^assets/(.*)$",
"^[./]"
],
2022-08-27 18:34:18 +03:00
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"]
}