-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylecop.json
More file actions
62 lines (62 loc) · 2.18 KB
/
stylecop.json
File metadata and controls
62 lines (62 loc) · 2.18 KB
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
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": "Fabian Schmieder",
"copyrightText": "This file is part of SubSonicMedia.\n\nSubSonicMedia is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nSubSonicMedia is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with SubSonicMedia. If not, see https://www.gnu.org/licenses/.",
"xmlHeader": true,
"fileNamingConvention": "stylecop",
"documentInterfaces": true,
"documentExposedElements": true,
"documentInternalElements": true,
"documentPrivateElements": false,
"documentPrivateFields": false
},
"layoutRules": {
"newlineAtEndOfFile": "require",
"allowConsecutiveUsings": true
},
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace",
"systemUsingDirectivesFirst": true,
"blankLinesBetweenUsingGroups": "require",
"elementOrder": [
"kind",
"accessibility",
"constant",
"static",
"readonly"
]
},
"namingRules": {
"allowCommonHungarianPrefixes": true,
"allowedHungarianPrefixes": [
"db",
"at",
"or",
"up",
"it",
"un",
"x",
"y",
"id",
"ip",
"ui"
],
"allowedNamespaceComponents": ["My", "io"]
},
"maintainabilityRules": {
"topLevelTypes": ["class", "interface", "struct", "enum"]
},
"indentation": {
"indentationSize": 4,
"tabSize": 4,
"useTabs": false
},
"spacingRules": {
},
"readabilityRules": {
"allowBuiltInTypeAliases": false
}
}
}