-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStyleCop.json
More file actions
21 lines (21 loc) · 755 Bytes
/
StyleCop.json
File metadata and controls
21 lines (21 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema":
"https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"copyrightText":
"Copyright (c) {companyName}. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.",
"companyName": "my company",
"xmlHeader": false,
"fileNamingConvention": "metadata"
},
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"orderingRules": {
"systemUsingDirectivesFirst": true,
"usingDirectivesPlacement": "outsideNamespace",
"blankLinesBetweenUsingGroups": "omit"
}
}
}