We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546f570 commit 07534e1Copy full SHA for 07534e1
src/GraphQL.Primitives/StringSyntaxAttribute.cs
@@ -1,17 +1,21 @@
1
#if !NET7_0_OR_GREATER
2
3
+// ReSharper disable once CheckNamespace
4
namespace System.Diagnostics.CodeAnalysis;
5
6
/// <summary>
7
/// Stub
8
/// </summary>
9
public sealed class StringSyntaxAttribute : Attribute
10
{
11
+ // ReSharper disable once InconsistentNaming
12
+#pragma warning disable IDE1006
13
public const string CompositeFormat = nameof(CompositeFormat);
14
+#pragma warning restore IDE1006
15
16
+#pragma warning disable IDE0060
17
public StringSyntaxAttribute(string syntax)
- {
- }
-
18
+ { }
19
+#pragma warning restore IDE0060
20
}
21
#endif
0 commit comments