mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-03-26 05:53:51 +00:00
48 lines
1.1 KiB
JSON
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
|
|
}
|
|
}
|
|
}
|