-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.oxfmtrc.json
More file actions
59 lines (58 loc) · 1.4 KB
/
Copy path.oxfmtrc.json
File metadata and controls
59 lines (58 loc) · 1.4 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
// .oxfmtrc.json 1.0.6
// This Oxfmt configuration (shared between all matterbridge packages) is designed for a TypeScript project using ESM modules.
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": [
"**/.cache/**",
"**/.git/**",
"apps/**",
"**/build/**",
"chip/**",
"**/coverage/**",
"docs",
"**/dist/**",
"**/temp/**",
"**/node_modules/**",
"**/out/**",
"**/screenshots/**",
"vendor/**",
"**/package-lock.json",
"scripts/*.html",
"eslint.config.js"
],
"printWidth": 180,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
"proseWrap": "preserve",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false,
"sortImports": {
"groups": [
"side_effect",
{ "newlinesBetween": true },
"builtin",
{ "newlinesBetween": true },
"external",
{ "newlinesBetween": true },
["internal", "subpath"],
{ "newlinesBetween": true },
["parent", "sibling", "index"],
{ "newlinesBetween": true },
"style",
{ "newlinesBetween": true },
"unknown"
]
},
"sortPackageJson": false
}