-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
stylecop.json
37 lines (37 loc) · 1.19 KB
/
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
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": "Valters Melnalksnis",
"copyrightText": "Copyright 2021 {companyName}\r\nLicensed under the {licenseName}.\r\nSee {licenseFile} file in the project root for full license information.",
"variables": {
"licenseName": "GNU Affero General Public License v3.0 or later",
"licenseFile": "LICENSE.txt"
},
"excludeFromPunctuationCheck": [],
"xmlHeader": false,
"documentationCulture": "en-US",
"documentExposedElements": true,
"documentInterfaces": true,
"documentInternalElements": true,
"documentPrivateElements": false,
"documentPrivateFields": false,
"fileNamingConvention": "stylecop",
"headerDecoration": ""
},
"indentation": {
"indentationSize": 4,
"tabSize": 4,
"useTabs": true
},
"layoutRules": {
"allowConsecutiveUsings": true,
"newlineAtEndOfFile": "require"
},
"orderingRules": {
"systemUsingDirectivesFirst": true,
"usingDirectivesPlacement": "outsideNamespace",
"blankLinesBetweenUsingGroups": "require"
}
}
}