lume/.prettierrc

27 lines
607 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,
"importOrder": [
2023-04-15 02:06:29 +00:00
"^@app/(.*)$",
2023-03-04 14:00:43 +00:00
"^@pages/(.*)$",
"^@components/(.*)$",
"^@stores/(.*)$",
2023-03-04 14:00:43 +00:00
"^@utils/(.*)$",
"^@assets/(.*)$",
2023-04-22 10:56:09 +00:00
"^@renderer/(.*)$",
2023-03-04 14:00:43 +00:00
"<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
}