aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Monteiro <mark.monteiro23@gmail.com>2019-12-14 23:35:28 +0100
committerMark Monteiro <mark.monteiro23@gmail.com>2019-12-14 23:35:28 +0100
commit3924df9c512942bc1968110d434e12714aa27a56 (patch)
tree1431ef4da05a6b16bacaba2c24406f6233f12e3d
parent47805d89fecaae7cc43c179596d1eb6e4bd53968 (diff)
Move CA1032 rule to correct location
-rw-r--r--jellyfin.ruleset4
1 files changed, 2 insertions, 2 deletions
diff --git a/jellyfin.ruleset b/jellyfin.ruleset
index 4ab07c941..27d8a7cd9 100644
--- a/jellyfin.ruleset
+++ b/jellyfin.ruleset
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Rules for Jellyfin.Server" Description="Code analysis rules for Jellyfin.Server.csproj" ToolsVersion="14.0">
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
- <!-- disable warning CA1032: Implement standard exception constructors -->
- <Rule Id="CA1032" Action="Info" />
<!-- disable warning SA1202: 'public' members must come before 'private' members -->
<Rule Id="SA1202" Action="Info" />
<!-- disable warning SA1204: Static members must appear before non-static members -->
@@ -33,6 +31,8 @@
<Rules AnalyzerId="Microsoft.CodeAnalysis.FxCopAnalyzers" RuleNamespace="Microsoft.Design">
<!-- disable warning CA1031: Do not catch general exception types -->
<Rule Id="CA1031" Action="Info" />
+ <!-- disable warning CA1032: Implement standard exception constructors -->
+ <Rule Id="CA1032" Action="Info" />
<!-- disable warning CA1062: Validate arguments of public methods -->
<Rule Id="CA1062" Action="Info" />
<!-- disable warning CA1720: Identifiers should not contain type names -->