-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
stylecop.json
27 lines (27 loc) · 942 Bytes
/
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
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": ".NET Foundation",
"documentationCulture": "en-US",
"documentInterfaces": true,
"documentInternalElements": false,
"copyrightText": "Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the MIT license.\nSee the LICENSE file in the project root for more information.",
"xmlHeader": true
},
"orderingRules": {
"elementOrder": [
"kind",
"constant",
"accessibility",
"static",
"readonly"
],
"systemUsingDirectivesFirst": true,
"usingDirectivesPlacement": "outsideNameSpace"
},
"maintainabilityRules": {
"topLevelTypes": ["class"]
}
}
}