Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ dotnet_diagnostic.RCS1214.severity = warning
dotnet_diagnostic.RCS1217.severity = warning
# Unused element in a documentation comment.
dotnet_diagnostic.RCS1228.severity = warning
# Fix documentation comment tag.
dotnet_diagnostic.RCS1247.severity = warning
# Unnecessary null-forgiving operator.
dotnet_diagnostic.RCS1249.severity = warning
# Remove unnecessary braces.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace HotChocolate.ApolloFederation.Types;

/// <summary>
/// Scalar <code>Policy</code> representation.
/// Scalar <c>Policy</c> representation.
/// </summary>
public readonly record struct Policy
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace HotChocolate.ApolloFederation.Types;

/// <summary>
/// The <code>Policy</code> scalar representing an authorization policy. Serializes as a string.
/// The <c>Policy</c> scalar representing an authorization policy. Serializes as a string.
/// </summary>
public sealed class PolicyType : ScalarType<Policy, StringValueNode>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace HotChocolate.ApolloFederation.Types;

/// <summary>
/// Scalar <code>Scope</code> representation.
/// Scalar <c>Scope</c> representation.
/// </summary>
public readonly record struct Scope
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace HotChocolate.ApolloFederation.Types;

/// <summary>
/// The <code>Scope</code> scalar representing a JWT scope. Serializes as a string.
/// The <c>Scope</c> scalar representing a JWT scope. Serializes as a string.
/// </summary>
public sealed class ScopeType : ScalarType<Scope, StringValueNode>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class NatsPubSubExtensions
{
/// <summary>
/// Adds support for using NATS as a subscription provider.
/// Ensure you have configured the NATS client using <code>AddNatsClient(...)</code>
/// Ensure you have configured the NATS client using <c>AddNatsClient(...)</c>
/// before calling this method.
/// </summary>
/// <param name="builder">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public struct MutationConventionOptions
/// <summary>
/// Specifies a name pattern for the input type name of a mutation.
/// The pattern is specified like the following:
/// <code>"{MutationName}Input"</code>
/// <c>"{MutationName}Input"</c>
///
/// <code>
/// type Mutation {
Expand Down Expand Up @@ -43,7 +43,7 @@ public struct MutationConventionOptions
/// <summary>
/// Specifies a name pattern for the payload type name of a mutation.
/// The pattern is specified like the following:
/// <code>"{MutationName}Payload"</code>
/// <c>"{MutationName}Payload"</c>
///
/// <code>
/// type Mutation {
Expand All @@ -61,7 +61,7 @@ public struct MutationConventionOptions
/// <summary>
/// Specifies a name pattern for the error union type name of a mutation.
/// The pattern is specified like the following:
/// <code>"{MutationName}Error"</code>
/// <c>"{MutationName}Error"</c>
///
/// <code>
/// type Mutation {
Expand Down
Loading