Files
tgstation-server/build/stylecop.json
T
Jordan Brown b9586c7fee The great stylecop update
Beware those that read into this commit. Here there be style conformance...

Closes #1252
2021-05-09 19:27:09 -04:00

39 lines
759 B
JSON

{
"settings": {
"documentationRules": {
"documentPrivateElements": true,
"documentPrivateFields": true,
"excludeFromPunctuationCheck": [
"remarks"
]
},
"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"
}
}
}