-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.prettierrc
More file actions
24 lines (24 loc) · 735 Bytes
/
Copy path.prettierrc
File metadata and controls
24 lines (24 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://json.schemastore.org/prettierrc.json",
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"experimentalOperatorPosition": "start",
"experimentalTernaries": true,
"importOrder": ["@/*", "<BUILTIN_MODULES>", "<SEPARATOR>", "<TS_TYPES>"],
"importOrderSeparation": true,
"importOrderSideEffects": false,
"importOrderSortByLength": "asc",
"importOrderSortSpecifiers": true,
"objectWrap": "preserve",
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}