stylecop.json 591 B

1234567891011121314151617181920
  1. {
  2. "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
  3. "settings": {
  4. "indentation": {
  5. "indentationSize": 4
  6. },
  7. "maintainabilityRules": {
  8. "topLevelTypes": [ "class", "interface", "enum", "struct" ]
  9. },
  10. "readabilityRules": {
  11. "allowBuiltInTypeAliases": false
  12. },
  13. "documentationRules": {
  14. "xmlHeader": false,
  15. "documentInterfaces": false,
  16. "documentExposedElements": false,
  17. "documentInternalElements": false
  18. }
  19. }
  20. }