Files
aspnetcore5-with-postgres-i…/My.ProjectName/stylecop.json
T
2021-04-04 09:41:22 +01:00

53 lines
1.7 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
// ACTION REQUIRED: This file was automatically added to your project, but it
// will not take effect until additional steps are taken to enable it. See the
// following page for additional information:
//
// https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/EnableConfiguration.md
"": null,
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": "MyCompanyName",
"documentationCulture": "en-GB",
"documentInterfaces": true,
"documentExposedElements": true,
"documentInternalElements": true,
"documentPrivateElements": true,
"documentPrivateFields": false,
"headerDecoration": "-----------------------------------------------------------------------",
"xmlHeader": true
},
"layoutRules": {
"allowConsecutiveUsings": true,
"newlineAtEndOfFile": "require"
},
"maintainabilityRules": {
"topLevelTypes": [
"class",
"interface"
]
},
"namingRules": {
"allowCommonHungarianPrefixes": true,
"includeInferredTupleElementNames": true,
"tupleElementNameCasing": "PascalCase"
},
"orderingRules": {
"elementOrder": [
"kind",
"constant",
"accessibility",
"static",
"readonly"
],
"blankLinesBetweenUsingGroups": "omit",
"usingDirectivesPlacement": "outsideNamespace",
"systemUsingDirectivesFirst": true
},
"readabilityRules": {
"allowBuiltInTypeAliases": true
}
}
}