Cake.ArgumentHelpers/stylecop.json
Jessica 1f55b94d2a
Add .NET Standard build and align project structure
and style rules with cakebuild/cake
2021-08-10 23:19:16 -03:00

32 lines
942 B
JSON

{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"indentation": {
"useTabs": false,
"indentationSize": 4
},
"documentationRules": {
"documentExposedElements": true,
"documentInternalElements": false,
"documentPrivateElements": false,
"documentInterfaces": true,
"documentPrivateFields": false
},
"layoutRules": {
"newlineAtEndOfFile": "allow"
},
"maintainabilityRules": {
},
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace",
"systemUsingDirectivesFirst": true,
"elementOrder": [
"kind",
"accessibility",
"constant",
"static",
"readonly"
]
}
}
}