Pārlūkot izejas kodu

Remove more doc warnings

Bond-009 6 gadi atpakaļ
vecāks
revīzija
e620bb9512
2 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  1. 1 1
      Jellyfin.Server/Jellyfin.Server.csproj
  2. 4 0
      jellyfin.ruleset

+ 1 - 1
Jellyfin.Server/Jellyfin.Server.csproj

@@ -12,7 +12,7 @@
     <!-- We need C# 7.1 for async main-->
     <LangVersion>latest</LangVersion>
     <!-- Disable ducumentation warnings (for now) -->
-    <NoWarn>SA1600</NoWarn>
+    <NoWarn>SA1600;CS1591</NoWarn>
   </PropertyGroup>
 
   <ItemGroup>

+ 4 - 0
jellyfin.ruleset

@@ -14,4 +14,8 @@
     <!-- disable warning SA1633: The file header is missing or not located at the top of the file -->
     <Rule Id="SA1633" Action="None" />
   </Rules>
+  <Rules AnalyzerId="Microsoft.CodeAnalysis.FxCopAnalyzers" RuleNamespace="Microsoft.Design">
+    <!-- disable warning CA1054: Change the type of parameter url from string to System.Uri -->
+    <Rule Id="CA1054" Action="None" />
+  </Rules>
 </RuleSet>