forked from getsentry/sentry-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
27 lines (27 loc) · 725 Bytes
/
Copy path.oxfmtrc.json
File metadata and controls
27 lines (27 loc) · 725 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
25
26
27
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"arrowParens": "avoid",
"printWidth": 120,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all",
"experimentalSortPackageJson": false,
"ignorePatterns": [
"packages/browser/test/loader.js",
"packages/replay-worker/examples/worker.min.js",
"dev-packages/browser-integration-tests/fixtures/**",
"dev-packages/bundler-plugin-integration-tests/fixtures/**",
"packages/bundler-plugins/test/core/fixtures/**",
"**/test.ts-snapshots/**",
"/.nx/cache",
"/.nx/workspace-data"
],
"overrides": [
{
"files": ["*.md", "*.mdc"],
"options": {
"proseWrap": "preserve"
}
}
]
}