-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathFxCopCustomDictionary.xml
64 lines (63 loc) · 3.1 KB
/
FxCopCustomDictionary.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="utf-8"?>
<Dictionary>
<Words>
<!--
This is a list of case-insensitive words that exist in the dictionary
but you do not want to be recognized by IdentifiersShouldBeSpelledCorrectly.
Do not add deprecated terms to this list, instead add these to the
<Deprecated> section below.
-->
<Unrecognized>
<!--<Word>cb</Word>-->
</Unrecognized>
<!--
This is a list of case-insensitive words that do not exist in the dictionary
but you still want to be considered as recognized by
IdentifiersShouldBeSpelledCorrectly. Do not add compound words (e.g. 'FileName')
to this list as this will cause CompoundWordsShouldBeBeCasedCorrectly to fire on
usages of the compound word stating that they should be changed to their discrete equivalent
(for example 'FileName' -> 'Filename').
-->
<Recognized>
<Word>headnode</Word>
</Recognized>
<Deprecated>
<!--
This is a list of deprecated terms with their preferred alternates and is
used by UsePreferredTerms. The deprecated terms are case-insensitive,
however, make sure to pascal-case the preferred alternates. If a word
does not have a preferred alternate, simply leave it blank.
-->
<!-- <Term PreferredAlternate="EnterpriseServices">complus</Term>-->
</Deprecated>
<Compound>
<!--
This is a list of discrete terms with their compound alternates and is used by
CompoundWordsShouldBeCasedCorrectly. These are words that exist in the
dictionary as discrete terms, however, should actually be cased as compound words.
For example, 'Filename' exists in the dictionary and hence the spelling rules will
not see it as unrecognized but its actual preferred usage is 'FileName'; adding it
below causes CompoundWordsShouldBeCasedCorrectly to fire. The discrete terms are
case-insensitive, however, be sure to pascal-case the compound alternates.
Any discrete terms added below automatically get added to the list of discrete
exceptions to prevent CompoundWordsShouldBeCasedCorrectly from firing both on the
compound word (for example 'WhiteSpace') and its discrete alternate (for example
'Whitespace').
-->
</Compound>
<DiscreteExceptions>
<!--
This is a list of case-insensitive exceptions to the CompoundWordsShouldBeCasedCorrectly
discrete term check. As this check works solely on the basis of whether two consecutive
tokens exists in the dictionary, it can have a high false positive rate. For example,
'onset' exists in the dictionary but the user probably intended it to be 'OnSet'.
Adding this word below prevents this rule from firing telling the user to change 'OnSet'
to 'Onset'.
-->
</DiscreteExceptions>
</Words>
<Acronyms>
<CasingExceptions>
</CasingExceptions>
</Acronyms>
</Dictionary>