nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git a/jellyfin.ruleset b/jellyfin.ruleset
2index 1c834de82..bf70fef1e 100644
3--- a/jellyfin.ruleset
4+++ b/jellyfin.ruleset
5@@ -54,6 +54,33 @@
6 <Rule Id="SA1602" Action="None" />
7 <!-- disable warning SA1633: The file header is missing or not located at the top of the file -->
8 <Rule Id="SA1633" Action="None" />
9+
10+ <!-- disable warning SA1028: Code should not contain trailing whitespace -->
11+ <Rule Id="SA1028" Action="None" />
12+ <!-- disable warning SA1507: Code should not contain multiple blank lines in a row -->
13+ <Rule Id="SA1507" Action="None" />
14+ <!-- disable warning SA1642: Constructor summary documentation should begin with standard text -->
15+ <Rule Id="SA1642" Action="None" />
16+ <!-- disable warning SA1505: An opening brace should not be followed by a blank line -->
17+ <Rule Id="SA1505" Action="None" />
18+ <!-- disable warning SA1508: A closing brace should not be preceded by a blank line -->
19+ <Rule Id="SA1508" Action="None" />
20+ <!-- disable warning SA1513: Closing brace should be followed by blank line -->
21+ <Rule Id="SA1513" Action="None" />
22+ <!-- disable warning SA1111: Closing parenthesis should be on line of last parameter -->
23+ <Rule Id="SA1111" Action="None" />
24+ <!-- disable warning SA1649: File name should match first type name -->
25+ <Rule Id="SA1649" Action="None" />
26+ <!-- disable warning SA1137: Elements should have the same indentation -->
27+ <Rule Id="SA1137" Action="None" />
28+ <!-- disable warning SA1005: Single line comment should begin with a space -->
29+ <Rule Id="SA1005" Action="None" />
30+ <!-- disable warning SA1208: Using directive for 'System.Text' should appear before directive for '...' -->
31+ <Rule Id="SA1208" Action="None" />
32+ <!-- disable warning SA1208: The property's documentation summary text should begin with: 'Gets a value indicating whether' -->
33+ <Rule Id="SA1623" Action="None" />
34+ <!-- disable warning SA1625: Element documentation should not be copied and pasted -->
35+ <Rule Id="SA1625" Action="None" />
36 </Rules>
37
38 <Rules AnalyzerId="Microsoft.CodeAnalysis.NetAnalyzers" RuleNamespace="Microsoft.Design">