forked from berhir/SignalR.Modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleCop.json
More file actions
26 lines (25 loc) · 855 Bytes
/
StyleCop.json
File metadata and controls
26 lines (25 loc) · 855 Bytes
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
{
// StyleCop Configuration
// https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/Configuration.md
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": "Guid.New GmbH",
"documentExposedElements": false,
"documentInterfaces": false,
"documentInternalElements": false,
"documentPrivateElements": false,
"documentPrivateFields": false
},
"orderingRules": {
"systemUsingDirectivesFirst": false,
"usingDirectivesPlacement": "outsideNamespace"
},
"maintainabilityRules": {
"topLevelTypes": [ "class", "interface" ]
},
"layoutRules": {
"newlineAtEndOfFile": "require"
}
}
}