-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
GlobalSuppressions.cs
11 lines (9 loc) · 982 Bytes
/
GlobalSuppressions.cs
1
2
3
4
5
6
7
8
9
10
11
// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1101:Prefix local calls with this", Justification = "I don't like .This", Scope = "namespaceanddescendants", Target = "~N:LlamaLibrary")]
[assembly: SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "Never intended to be a public API. This is fine.")]
[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1636:FileHeaderCopyrightTextMustMatch", Justification = "Private API. Not worried about legalese.")]
[assembly: SuppressMessage("Microsoft.StyleCop.CSharp.NamingRules", "SA1300:ElementMustBeginWithUpperCaseLetter", Justification = "Auto generated name")]