Files
tgstation-server/build/stylecop.json
2025-01-19 17:44:52 +08:00

48 lines
1.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"documentPrivateElements": true,
"documentPrivateFields": true,
"excludeFromPunctuationCheck": [
"remarks",
"example"
]
},
"indentation": {
"tabSize": 4,
"useTabs": true
},
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"maintainabilityRules": {
"topLevelTypes": [
"class",
"delegate",
"enum",
"interface",
"struct"
]
},
"orderingRules": {
"blankLinesBetweenUsingGroups": "require",
"elementOrder": [
"constant",
"kind",
"static",
"readonly",
"accessibility"
],
"usingDirectivesPlacement": "outsideNamespace"
},
"namingRules": {
"allowCommonHungarianPrefixes": false,
"includeInferredTupleElementNames": true
},
"readabilityRules": {
"allowBuiltInTypeAliases": true
}
}
}