-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylecop.json
25 lines (25 loc) · 999 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": {
"documentationRules": {
"companyName": "Microsoft",
"copyrightText": "Copyright (c) {companyName}. All rights reserved.\nLicensed under the {licenseName} license. See {licenseFile} in the project root for license information.",
"documentInterfaces": true,
"documentExposedElements": true,
"documentInternalElements": false,
"documentPrivateElements": false,
"documentPrivateFields": false,
"variables": {
"licenseName": "MIT",
"licenseFile": "LICENSE"
},
"xmlHeader": false
},
"layoutRules": {
"newlineAtEndOfFile": "omit"
},
"orderingRules": {
"blankLinesBetweenUsingGroups": "omit"
}
}
}