lume/.prettierrc

25 lines
557 B
Plaintext
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
2023-03-04 14:00:43 +00:00
"printWidth": 120,
2023-02-21 07:58:47 +00:00
"useTabs": false,
"endOfLine": "lf",
"bracketSpacing": true,
2023-03-04 14:00:43 +00:00
"bracketSameLine": false,
2023-05-10 08:48:24 +00:00
"importOrder": [
"^@app/(.*)$",
"^@shared/(.*)$",
"^@icons/(.*)$",
"^@stores/(.*)$",
"^@utils/(.*)$",
"<THIRD_PARTY_MODULES>",
"^[./]"
],
2023-02-21 07:58:47 +00:00
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"],
"pluginSearchDirs": false
}