-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.prettierrc
42 lines (42 loc) · 1.07 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
{
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"useTabs": false,
"trailingComma": "all",
"arrowParens": "always",
"endOfLine": "lf",
"plugins": [
"prettier-plugin-jsdoc",
"prettier-plugin-css-order",
"prettier-plugin-tailwindcss"
],
"tailwindConfig": "./tailwind.config.ts",
"tailwindFunctions": [
"cnTw",
"cn"
],
"jsdocCommentLineStrategy": "keep",
"jsdocPreferCodeFences": true,
"jsdocSeparateTagGroups": true,
"jsdocPrintWidth": 80,
"proseWrap": "always",
"overrides": [
{
"files": [
"./src/renderer/domains/**/*.ts",
"./src/renderer/shared/pallet/**/*.ts",
"./src/renderer/shared/effector/**/*.{ts,tsx}",
"./src/renderer/shared/feature/**/*.{ts,tsx}",
"./src/renderer/features/fellowship-*/**/*.{ts,tsx}",
"./src/renderer/features/wallet-*/**/*.{ts,tsx}",
"./src/renderer/shared/ui-kit/**/*.{ts,tsx}",
"./src/renderer/shared/ui-entities/**/*.{ts,tsx}"
],
"options": {
"arrowParens": "avoid"
}
}
]
}