Skip to content

Commit 8bca377

Browse files
authored
AsyncResultOption (#211)
* Update SDK * update editorconfig * format build.fs * Making AsyncResultOption more usable
1 parent 31520ce commit 8bca377

File tree

12 files changed

+1119
-304
lines changed

12 files changed

+1119
-304
lines changed

.editorconfig

Lines changed: 42 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ indent_size = 4
1414
trim_trailing_whitespace = true
1515
end_of_line = lf
1616

17-
[*.yml]
18-
indent_size = 2
19-
2017
[*.{fs,fsi,fsx,config}]
2118
# https://fsprojects.github.io/fantomas/docs/end-users/Configuration.html
2219
charset = utf-8
@@ -29,3 +26,45 @@ fsharp_max_array_or_list_number_of_items=1
2926
fsharp_array_or_list_multiline_formatter=number_of_items
3027
fsharp_max_infix_operator_expression=10
3128
fsharp_multi_line_lambda_closing_newline=true
29+
30+
# Visual Studio Solution Files
31+
[*.sln]
32+
indent_style = tab
33+
34+
# XML project files
35+
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj,sfproj}]
36+
indent_size = 2
37+
38+
# XML config files
39+
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
40+
indent_size = 2
41+
42+
# Markdown Files
43+
[*.{md,mdx}]
44+
trim_trailing_whitespace = false
45+
46+
# Bash Files
47+
[*.{sh}]
48+
end_of_line = lf
49+
50+
# Batch Files
51+
[*.{cmd,bat}]
52+
end_of_line = crlf
53+
54+
# Powershell Files
55+
[*.{ps1, psm1}]
56+
end_of_line = crlf
57+
58+
# Paket files
59+
[paket.*]
60+
trim_trailing_whitespace = true
61+
indent_size = 2
62+
63+
[*.paket.references]
64+
trim_trailing_whitespace = true
65+
indent_size = 2
66+
67+
# YAML Files
68+
[*.{yml,yaml}]
69+
indent_size = 2
70+
indent_style = space

.vscode/settings.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,12 @@
22
"editor.inlayHints.enabled": "off",
33
"FSharp.enableAdaptiveLspServer": true,
44
"FSharp.enableMSBuildProjectGraph": true,
5-
"editor.formatOnSave": true
5+
"editor.formatOnSave": true,
6+
"FSharp.notifications.trace": false,
7+
"FSharp.notifications.traceNamespaces": [
8+
"BoundModel.TypeCheck",
9+
"BackgroundCompiler."
10+
],
11+
"FSharp.fsac.conserveMemory": true,
12+
"FSharp.fsac.parallelReferenceResolution": false
613
}

0 commit comments

Comments
 (0)