-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathsettings.json
More file actions
93 lines (84 loc) · 2.82 KB
/
settings.json
File metadata and controls
93 lines (84 loc) · 2.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"editor.formatOnSave": true,
"editor.detectIndentation": false,
"editor.trimAutoWhitespace": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
// Use the OXC formatter as the default formatter which matches what yarn format will do
"editor.defaultFormatter": "oxc.oxc-vscode",
// Prettier settings for those that are still using the prettier extension
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"prettier.printWidth": 140,
"prettier.trailingComma": "all",
"eslint.enable": true,
"eslint.workingDirectories": [{ "pattern": "./packages/framework/eslint-config-rules" }], // use the common eslint config file
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.js": "${capture}.js.map, ${capture}.d.ts, ${capture}.d.ts.map",
"*.ts": "${capture}.android.tsx, ${capture}.ios.tsx, ${capture}.macos.tsx, ${capture}.windows.tsx, ${capture}.win32.tsx, ${capture}.android.ts, ${capture}.ios.ts, ${capture}.macos.ts, ${capture}.windows.ts, ${capture}.win32.ts",
"*.tsx": "${capture}.android.tsx, ${capture}.ios.tsx, ${capture}.macos.tsx, ${capture}.windows.tsx, ${capture}.win32.tsx, ${capture}.android.ts, ${capture}.ios.ts, ${capture}.macos.ts, ${capture}.windows.ts, ${capture}.win32.ts"
},
"files.trimTrailingWhitespace": true,
"files.associations": {
"**/package.json.hbs": "json",
"**/*.json.hbs": "jsonc",
"**/README.md.hbs": "markdown"
},
"files.exclude": {
"**/lib-amd": true,
"**/lib-commonjs": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.hg/store/**": true,
"**/lib": true,
"**/lib-commonjs": true,
"**/lib-amd": true
},
"javascript.preferences.quoteStyle": "single",
"json.format.enable": false,
// enable the native preview for typescript, used to build internally as well
"typescript.experimental.useTsgo": true,
"typescript.preferences.quoteStyle": "single",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"typescript.tsdk": "./node_modules/typescript/lib",
"search.exclude": {
"**/node_modules": true,
"**/lib": true,
"**/lib-amd": true,
"**/lib-commonjs": true,
"**/dist": true
},
"[handlebars]": {
"editor.formatOnSave": false
},
"cSpell.words": [
"Larrson",
"Pressable",
"Semibold",
"Subheadline",
"TESTPAGE",
"beachball",
"cocoapods",
"consts",
"fluentui",
"focusable",
"macos",
"monospace",
"nuget",
"objc",
"podspec",
"podspecs",
"stylesheet",
"subspec",
"uifabricshared",
"unemphasized"
]
}