spacedrive/.prettierrc.json

20 lines
377 B
JSON
Raw Normal View History

2021-12-31 11:19:09 +00:00
{
2022-05-23 07:53:53 +00:00
"pluginSearchDirs": ["."],
2022-05-23 03:42:14 +00:00
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"bracketSameLine": false,
2022-05-23 03:42:14 +00:00
"semi": true,
"quoteProps": "consistent",
"importOrder": [
"^@sd/core/(.*)$",
"^@sd/interface/(.*)$",
"^@sd/client/(.*)$",
"^@sd/ui/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
2022-04-20 05:55:44 +00:00
}