-
Notifications
You must be signed in to change notification settings - Fork 163
/
stylecop.json
25 lines (25 loc) · 948 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
{
"$schema":
"https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace",
"blankLinesBetweenUsingGroups": "omit"
},
"maintainabilityRules": {
"topLevelTypes": ["class", "interface", "struct", "enum", "delegate"]
},
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"documentationRules": {
"copyrightText":
"Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the Apache 2.0 License.\nSee the LICENSE file in the project root for more information.",
"xmlHeader": false,
"documentInterfaces": false,
"documentExposedElements": true,
"documentInternalElements": false,
"fileNamingConvention": "metadata"
}
}
}