diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-10-10 16:53:37 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-10 16:53:37 +0300 |
| commit | c6cb4b7cf86c68ce64a5c4f128caa6d645eb0a9c (patch) | |
| tree | d00b1d6074e41f779f2591e1b560eb20041a3e9b | |
| parent | 094852ce304c0d64747d1ade2a8a73dbf22a5b61 (diff) | |
| parent | 416155c35f4698f63b628741be006c1143c3c086 (diff) | |
Merge pull request #1840 from Bond-009/ruleset
Ignore warning CA1308 and SA1108
| -rw-r--r-- | jellyfin.ruleset | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/jellyfin.ruleset b/jellyfin.ruleset index 8ea1d6b16..e259131b0 100644 --- a/jellyfin.ruleset +++ b/jellyfin.ruleset @@ -8,6 +8,8 @@ <!-- disable warning SA1101: Prefix local calls with 'this.' --> <Rule Id="SA1101" Action="None" /> + <!-- disable warning SA1108: Block statements should not contain embedded comments --> + <Rule Id="SA1108" Action="None" /> <!-- disable warning SA1130: Use lambda syntax --> <Rule Id="SA1130" Action="None" /> <!-- disable warning SA1200: 'using' directive must appear within a namespace declaration --> @@ -38,6 +40,8 @@ <Rule Id="CA1054" Action="None" /> <!-- disable warning CA1303: Do not pass literals as localized parameters --> <Rule Id="CA1303" Action="None" /> + <!-- disable warning CA1308: Normalize strings to uppercase --> + <Rule Id="CA1308" Action="None" /> <!-- disable warning CA2000: Dispose objects before losing scope --> <Rule Id="CA2000" Action="None" /> </Rules> |
