-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc
44 lines (44 loc) · 1.06 KB
/
.prettierrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "http://json.schemastore.org/prettierrc",
"plugins": [
"prettier-plugin-jsdoc",
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-packagejson"
],
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"proseWrap": "preserve",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"importOrder": [
"^swagger-typescript-api",
"<THIRD_PARTY_MODULES>",
"^\\.\\./",
"^\\./"
],
"importOrderSortSpecifiers": true,
"importOrderGroupNamespaceSpecifiers": true,
"importOrderCaseInsensitive": true,
"jsdocSeparateReturnsFromParam": true,
"jsdocSeparateTagGroups": true,
"jsdocCapitalizeDescription": false,
"jsdocPrintWidth": 80,
"overrides": [
{
"files": [".prettierrc", ".eslintrc"],
"options": {
"parser": "json"
}
}
]
}