We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d57f0 commit 1e9a1b9Copy full SHA for 1e9a1b9
.editorconfig
@@ -92,6 +92,9 @@ csharp_prefer_system_threading_lock = true:suggestion
92
# IDE0078: Use pattern matching
93
dotnet_diagnostic.IDE0078.severity = silent
94
95
+# FLUID001: Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
96
+dotnet_diagnostic.FLUID001.severity = none
97
+
98
[*.{cs,vb}]
99
#### Naming styles ####
100
Fluid/ITemplateCache.cs
@@ -1,8 +1,11 @@
1
+using System.Diagnostics.CodeAnalysis;
2
3
namespace Fluid;
4
5
/// <summary>
6
/// Interface for caching parsed templates in memory.
7
/// </summary>
8
+[Experimental("FLUID001")]
9
public interface ITemplateCache
10
{
11
0 commit comments