-
Notifications
You must be signed in to change notification settings - Fork 3
/
stylecop.json
69 lines (68 loc) · 1.46 KB
/
stylecop.json
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
65
66
67
68
69
{
// ACTION REQUIRED: This file was automatically added to your project, but it
// will not take effect until additional steps are taken to enable it. See the
// following page for additional information:
//
// https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/EnableConfiguration.md
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": "PlaceholderCompany"
},
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace",
"systemUsingDirectivesFirst": true,
"blankLinesBetweenUsingGroups": "allow"
},
"namingRules": {
"allowCommonHungarianPrefixes": true,
"allowedHungarianPrefixes": [
"as",
"d",
"db",
"dn",
"do",
"dr",
"ds",
"dt",
"e",
"e2",
"er",
"f",
"fs",
"go",
"id",
"if",
"in",
"ip",
"is",
"js",
"li",
"my",
"no",
"ns",
"on",
"or",
"pi",
"pv",
"sa",
"sb",
"se",
"si",
"so",
"sp",
"tc",
"to",
"tr",
"ui",
"un",
"wf",
"ws",
"x",
"y",
"j",
"js"
]
}
}
}