jsoncrack.com/.prettierrc

18 lines
405 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$)",
2023-03-31 20:33:37 +03:00
"styled",
2022-09-12 21:53:31 +03:00
"<THIRD_PARTY_MODULES>",
2023-03-31 20:33:37 +03:00
"^src/(.*)$",
2022-09-12 21:53:31 +03:00
"^[./]"
],
2023-05-14 13:35:14 +03:00
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"],
"plugins": ["@trivago/prettier-plugin-sort-imports"]
2022-08-27 18:34:18 +03:00
}