guild_front/.prettierrc

21 lines
381 B
Plaintext
Raw Normal View History

2023-05-23 16:12:22 +03:00
{
"tabWidth": 2,
2023-05-30 12:13:59 +03:00
"semi": true,
"printWidth": 80,
2023-05-31 08:36:15 +03:00
"useTabs": false,
2023-12-19 17:35:40 +03:00
"trailingComma" : "none",
2023-05-31 08:36:15 +03:00
"importOrder": [
"^@react/(.*)$",
"^@redux/(.*)$",
"^@utils/(.*)$",
"^@api/(.*)$",
"^@hooks/(.*)$",
"^@pages/(.*)$",
"^@components/(.*)$",
"^assets/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
2023-05-23 16:12:22 +03:00
}