mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 09:13:19 +01:00
Matthias Kretschmann
1d74f420be
* app router migration * fixes * move to Next.js metadata handling * theme switch fixes * use some server actions * update tests * more unit tests * restore prettier-plugin-sort-imports functionality * cleanup * package updates * basic layout test * test tweak * readme updates
17 lines
362 B
Plaintext
17 lines
362 B
Plaintext
{
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"tabWidth": 2,
|
|
"endOfLine": "lf",
|
|
"plugins": ["@trivago/prettier-plugin-sort-imports"],
|
|
"importOrder": [
|
|
"^(react/(.*)$)|^(react$)",
|
|
"^(next/(.*)$)|^(next$)",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"^[./]"
|
|
],
|
|
"importOrderSeparation": false,
|
|
"importOrderSortSpecifiers": true
|
|
}
|