1
0
mirror of https://github.com/XFox111/SimpleOTP.git synced 2026-04-22 08:00:45 +03:00
Files
SimpleOTP/SimpleOTP.Test/stylecop.json
T
2021-05-28 18:36:54 +03:00

48 lines
1.3 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings":
{
"documentationRules":
{
"companyName": "Eugene Fox",
"copyrightText": "------------------------------------------------------------\nCopyright ©{year} {companyName}. All rights reserved.\nCode by {author}\n\nLicensed under MIT license (https://opensource.org/licenses/MIT)\n------------------------------------------------------------",
"xmlHeader": false,
"variables":
{
"year": "2021",
"author": "Eugene Fox (aka XFox)"
},
"headerDecoration": "------------------------------------------------------------",
"fileNamingConvention": "stylecop",
"documentationCulture": "en-US"
},
"indentation":
{
"useTabs": true
},
"layoutRules":
{
"newlineAtEndOfFile": "omit"
},
"maintainabilityRules":
{
"topLevelTypes": [ "class", "interface", "struct" ]
},
"namingRules":
{
"allowCommonHungarianPrefixes": false,
"allowedNamespaceComponents": [],
"tupleElementNameCasing": "PascalCase"
},
"orderingRules":
{
"blankLinesBetweenUsingGroups": "require",
"systemUsingDirectivesFirst": true,
"usingDirectivesPlacement": "outsideNamespace"
},
"readabilityRules":
{
"allowBuiltInTypeAliases": false
}
}
}