-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
76 lines (76 loc) · 1.74 KB
/
.oxfmtrc.json
File metadata and controls
76 lines (76 loc) · 1.74 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all",
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"endOfLine": "lf",
"quoteProps": "as-needed",
"sortPackageJson": false,
"sortImports": {
"order": "asc",
"ignoreCase": true,
"newlinesBetween": false,
"sortSideEffects": false,
"groups": [
["side_effect", "side_effect_style"],
"builtin",
"external",
["internal", "parent", "sibling", "index"],
"unknown"
]
},
"ignorePatterns": [
"*.tsbuildinfo",
"**/.analysis/**",
"__generated__/**",
"__mocks__/**",
".bun/**",
".tamagui/**",
"@types/**",
"types/**",
"**/lcov-report/**",
"**/coverage/**",
"apps/extension/.maestro/**",
"apps/extension/dev/**",
"apps/mobile/.maestro/**",
"apps/mobile/ios/**",
"apps/mobile/android/**",
"apps/web/playwright/**",
"apps/web/cypress/**",
"apps/web/public/**",
"apps/web/vite/**",
"apps/web/scripts/**",
"apps/web/twist-configs/**",
"apps/web/test-results/**",
"apps/dev-portal/content/",
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/bin/**",
"**/.wxt/**",
"**/.next/**",
"**/.react-router/**",
"**/.source/**",
"**/.storybook/storybook.requires.ts",
"packages/api/src/clients/graphql/generated.ts",
"packages/api/src/clients/trading/api.json",
"tools/**/files/**",
"**/*.md",
"**/*.mdx",
"**/*.css",
"**/*.scss",
"**/*.less",
"**/*.html",
"**/*.yaml",
"**/*.yml",
"**/*.graphql",
"**/*.toml",
]
}