diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-11-22 14:14:51 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-22 14:14:51 +0300 |
| commit | ace45fb3f65543228a8a3d950a2587f0422f7978 (patch) | |
| tree | bede05c12a14d673d2e3ad658296d48ff6f4b397 | |
| parent | 13dd63d631d63ad9e1818af88a3662cae7c88f52 (diff) | |
| parent | 28df726c33c6449f14733108963a6f7675fab210 (diff) | |
Merge pull request #1968 from Bond-009/CA1720
Disable CA1720: Identifiers should not contain type names
| -rw-r--r-- | jellyfin.ruleset | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jellyfin.ruleset b/jellyfin.ruleset index 16d68567c..768e6dad6 100644 --- a/jellyfin.ruleset +++ b/jellyfin.ruleset @@ -31,6 +31,8 @@ <Rule Id="CA1031" Action="Info" /> <!-- disable warning CA1062: Validate arguments of public methods --> <Rule Id="CA1062" Action="Info" /> + <!-- disable warning CA1720: Identifiers should not contain type names --> + <Rule Id="CA1720" Action="Info" /> <!-- disable warning CA1812: internal class that is apparently never instantiated. If so, remove the code from the assembly. If this class is intended to contain only static members, make it static --> |
