forked from okta/okta-aspnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylecop.json
23 lines (23 loc) · 852 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
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"maintainabilityRules": {
"topLevelTypes": [ "class", "interface", "struct", "enum" ]
},
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace"
},
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"documentationRules": {
"companyName": "Okta, Inc",
"copyrightText": "Copyright (c) 2018-present {companyName}. All rights reserved.\nLicensed under the {licenseName} license. See the {licenseFile} file in the project root for full license information.",
"variables": {
"licenseName": "Apache 2.0",
"licenseFile": "LICENSE"
},
"documentInternalElements": false
}
}
}