stylecop.json 807 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{
    "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
    "settings": {        
        "indentation": {
            "indentationSize": 4,
            "tabSize": 4,
            "useTabs": false
        },
        "orderingRules": {
            "usingDirectivesPlacement": "outsideNamespace",
            "blankLinesBetweenUsingGroups": "omit"
        },
        "documentationRules": {
            "documentInterfaces": true,
15 16 17
            "documentInternalElements": false,
            "copyrightText": "Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the MIT license.",
            "xmlHeader": false
18 19 20 21
        }        
    }
  }