1234567891011121314151617181920 |
- {
- "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
- "settings": {
- "indentation": {
- "indentationSize": 4
- },
- "maintainabilityRules": {
- "topLevelTypes": [ "class", "interface", "enum", "struct" ]
- },
- "readabilityRules": {
- "allowBuiltInTypeAliases": false
- },
- "documentationRules": {
- "xmlHeader": false,
- "documentInterfaces": false,
- "documentExposedElements": false,
- "documentInternalElements": false
- }
- }
- }
|