portfolio/.prettierrc

20 lines
466 B
Plaintext
Raw Normal View History

2018-04-06 17:24:35 +02:00
{
"semi": false,
"singleQuote": true,
2020-11-20 23:36:55 +01:00
"trailingComma": "none",
2023-01-29 04:58:06 +01:00
"tabWidth": 2,
2023-01-29 22:47:50 +01:00
"endOfLine": "lf",
"plugins": ["@trivago/prettier-plugin-sort-imports"],
2023-01-29 04:58:06 +01:00
"importOrder": [
"^(react/(.*)$)|^(react$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
2024-02-05 10:29:00 +01:00
"^(@/(.*)$)|^(@$)",
"^(@content/(.*)$)|^(@content$)",
"^(@generated/(.*)$)|^(@generated$)",
2023-01-29 04:58:06 +01:00
"^[./]"
],
"importOrderSeparation": false,
"importOrderSortSpecifiers": true
2018-04-06 17:24:35 +02:00
}