-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMenees.Analyzers.Settings.xml
46 lines (41 loc) · 1.63 KB
/
Menees.Analyzers.Settings.xml
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
<?xml version="1.0" encoding="utf-8" ?>
<Menees.Analyzers.Settings>
<TabSize>4</TabSize>
<MaxLineColumns>120</MaxLineColumns>
<!-- <MaxMethodLines>5</MaxMethodLines> -->
<!-- <MaxPropertyAccessorLines>5</MaxPropertyAccessorLines> -->
<!-- <MaxFileLines>20</MaxFileLines> -->
<!-- <MaxUnregionedLines>20</MaxUnregionedLines> -->
<TypeFileNameExclusions>
<!-- <FileName>Enumerations.cs</FileName> -->
<!-- <FileName>Interfaces.cs</FileName> -->
<!-- <FileName>Delegates.cs</FileName> -->
<!-- This is just an example. AssemblyInfo files normally don't contain types, so they don't need to be excluded. -->
<!-- <FileRegex>.*AssemblyInfo\.cs$</FileRegex> -->
</TypeFileNameExclusions>
<AllowedNumericLiterals>
<!-- <Literal>0</Literal> -->
<!-- <Literal>1</Literal> -->
<!-- <Literal>2</Literal> -->
<!-- <CallerName>FromDays</CallerName> -->
<!-- <CallerRegex>^From(Hours|Minutes)$</CallerRegex> -->
</AllowedNumericLiterals>
<UnitTestAttributes>
<!-- From MSTest -->
<!-- <Class>TestClass</Class> -->
<!-- <Method>TestMethod</Method> -->
<!-- From NUnit -->
<!-- <Class>TestFixture</Class> -->
<!-- <Method>Test</Method> -->
</UnitTestAttributes>
<PreferredTerms>
<Term Avoid="Cancelled" Prefer="Canceled" />
<Term Avoid="Colour" Prefer="Color" />
<Term Avoid="ID" Prefer="Id" />
<Term Avoid="Indexes" Prefer="Indices" />
<Term Avoid="Vertexes" Prefer="Vertices" />
<Term Avoid="Kustom" Prefer="Custom" />
<Term Avoid="Behaviour" Prefer="Behavior" />
<Term Avoid="Matrixes" Prefer="Matrices" />
</PreferredTerms>
</Menees.Analyzers.Settings>