forked from Revolutionary-Games/Thrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalSuppressions.cs
53 lines (51 loc) · 2.75 KB
/
GlobalSuppressions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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.DocumentationRules", "SA1633:File should have header",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1101:Prefix local calls with this",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1503:Braces should not be omitted",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1401:Fields should be private",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.ReadabilityRules",
"SA1116:Split parameters should start on line after declaration", Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.DocumentationRules",
"SA1642:Constructor summary documentation should begin with standard text",
Justification = "this is just silly")]
[assembly:
SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1629:Documentation text should end with a period",
Justification = "not enforced by stylecop")]
[assembly:
SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1117:Parameters should be on same line or separate lines",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.DocumentationRules",
"SA1623:Property summary documentation should match accessors", Justification = "not enforced by stylecop")]
[assembly:
SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1516:Elements should be separated by blank line",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1611:Element parameters should be documented",
Justification = "not enforced by stylecop")]
[assembly:
SuppressMessage("StyleCop.CSharp.LayoutRules",
"SA1514:Element documentation header should be preceded by blank line", Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1402:File may only contain a single type",
Justification = "disabled by ruleset")]
[assembly:
SuppressMessage("StyleCop.CSharp.NamingRules", "SA1310:Field names should not contain underscore",
Justification = "disabled by ruleset")]