File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/HotChocolate/AzureFunctions/test/HotChocolate.AzureFunctions.Tests/Helpers Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,8 @@ dotnet_diagnostic.IDE0005.severity = warning
196
196
dotnet_diagnostic.IDE0028.severity = warning
197
197
# Order modifiers.
198
198
dotnet_diagnostic.IDE0036.severity = warning
199
+ # Use inferred member names.
200
+ dotnet_diagnostic.IDE0037.severity = warning
199
201
# Add readonly modifier.
200
202
dotnet_diagnostic.IDE0044.severity = warning
201
203
dotnet_diagnostic.RCS1169.severity = none
Original file line number Diff line number Diff line change @@ -53,5 +53,5 @@ public static HttpContext NewNitroHttpContext()
53
53
}
54
54
55
55
public static string CreateRequestBody ( string query )
56
- => JObject . FromObject ( new { query = query } ) . ToString ( Formatting . Indented ) ;
56
+ => JObject . FromObject ( new { query } ) . ToString ( Formatting . Indented ) ;
57
57
}
You can’t perform that action at this time.
0 commit comments