mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
32 lines
732 B
Plaintext
32 lines
732 B
Plaintext
{
|
|
"trailingComma": "es5",
|
|
"tabWidth": 4,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 120,
|
|
"plugins": ["@trivago/prettier-plugin-sort-imports"],
|
|
"importOrder": [
|
|
"~/styles$",
|
|
"\\.s?css$",
|
|
"\\.mocks?$",
|
|
"\\.spy$",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"^@posthog.*$",
|
|
"^lib/(.*)$|^scenes/(.*)$",
|
|
"^~/(.*)$",
|
|
"^public/(.*)$",
|
|
"^products/(.*)$",
|
|
"^storybook/(.*)$",
|
|
"^\\.+/"
|
|
],
|
|
"importOrderSeparation": true,
|
|
"importOrderSortSpecifiers": true,
|
|
"importOrderParserPlugins": [
|
|
"typescript",
|
|
"jsx",
|
|
"classProperties",
|
|
"decorators-legacy"
|
|
],
|
|
"proseWrap": "preserve"
|
|
}
|