-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc.json
40 lines (39 loc) · 1.27 KB
/
.prettierrc.json
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
{
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"quoteProps": "as-needed",
"singleQuote": true,
"semi": true,
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "es5",
"importOrder": [
"react-native-gesture-handler",
"^react|react-native|react-native-paper|react-native-ui-lib$",
"^styled-components$",
"^@oxvo-mobile/([^/]*?/)*?domains/Auth",
"^@oxvo-mobile/([^/]*?/)*?domains/Calendar",
"^@oxvo-mobile/([^/]*?/)*?domains/Home",
"^@oxvo-mobile/([^/]*?/)*?domains/Me",
"^@oxvo-mobile/([^/]*?/)*?domains/Notification",
"^@oxvo-mobile/([^/]*?/)*?domains/Packages",
"^@oxvo-mobile/([^/]*?/)*?domains/Services",
"^@oxvo-mobile/([^/]*?/)*?domains/Sessions",
"^@oxvo-mobile/([^/]*?/)*?screens/PrivateScreens",
"^@oxvo-mobile/([^/]*?/)*?screens/PublicScreens",
"^@oxvo-mobile/([^/]*?/)*?components",
"^@oxvo-mobile/([^/]*?/)*?navigation",
"^@oxvo-mobile/([^/]*?/)*?hooks",
"^@oxvo-mobile/([^/]*?/)*?assets",
"^@oxvo-mobile/([^/]*?/)*?constants",
"^@oxvo-mobile/([^/]*?/)*?libs",
"^@react-navigation/(.*)$",
"<THIRD_PARTY_MODULES>",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}